Convert an Angle from Degrees to Radians */
| 47 | |
| 48 | /** Convert an Angle from Degrees to Radians */ |
| 49 | inline Float radians( const Float& Ang ) { |
| 50 | return Ang * EE_PI_180; |
| 51 | } |
| 52 | |
| 53 | /** Convert an Angle from Math::Radians to Degrees */ |
| 54 | inline Float degrees( const Float& Radians ) { |
no outgoing calls
no test coverage detected