CARMA C++
trigFunctions.h
1 // $Id: trigFunctions.h,v 1.1 2007/06/14 18:38:10 abeard Exp $
2 #ifndef CARMA_SERVICES_TRIGFUNCTIONS_H
3 #define CARMA_SERVICES_TRIGFUNCTIONS_H
4 
5 namespace carma {
6 namespace services {
7 
8  class Angle;
9 
15  double sin( const Angle & angle );
16  double cos( const Angle & angle );
17  double tan( const Angle & angle );
18 
19  Angle asin( double x );
20  Angle acos( double x );
21  Angle atan( double x );
22  Angle atan2( double x, double y );
23 
24 } // namespace services
25 } // namespace carma
26 
27 #endif
double sin(const Angle &angle)
Convenient trigonometric functions utilizing the Angle class.