You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef CORDIC_HPP_
|
|
#define CORDIC_HPP_
|
|
|
|
namespace cordic {
|
|
constexpr double PI = 3.1415926535L;
|
|
|
|
void init();
|
|
|
|
double mod(double n, double d);
|
|
|
|
double cos(double x);
|
|
double sin(double x);
|
|
double tan(double x);
|
|
}
|
|
|
|
#endif // CORDIC_HPP_
|
|
|