18 lines
406 B
C
18 lines
406 B
C
/**
|
|
* This is a library of trigonmetric functions acting upon proper
|
|
* angles and not radians. Lifted from the Risoe tascom code
|
|
*
|
|
* March 2005
|
|
*/
|
|
#ifndef SICSTRIGD
|
|
#define SICSTRIGD
|
|
double Sign(double d);
|
|
double Sind (double x);
|
|
double Tand(double x);
|
|
double Cosd (double x);
|
|
double Atand (double x);
|
|
double Atand2 (double x);
|
|
double Acosd (double x);
|
|
double Asind (double x);
|
|
#endif
|