Main Page | Class Hierarchy | Alphabetical List | Compound List | File List | Compound Members | File Members | Related Pages

JBLMath.h

Go to the documentation of this file.
00001 
00010 #ifndef __JBLMATH_H
00011 #define __JBLMATH_H
00012 
00013 #include "Float_FF.h"
00014 
00016 inline Float_FF square (const Float_FF arg          
00017                     ) 
00018 { 
00019   return arg*arg; 
00020 }
00021 
00023 inline int square (const int arg          
00024                   ) 
00025 { 
00026   return arg*arg; 
00027 }
00028 
00030 inline Float_FF rad (Float_FF deg                   
00031                   )  
00032 {  
00033   return deg*1.7453293E-2; 
00034 }
00035 
00037 inline Float_FF deg (Float_FF rad                   
00038                     )  
00039 { 
00040   return rad*57.29578; 
00041 }
00042 
00043 #endif /* #ifndef __JBLMATH_H */

Generated on Thu Oct 26 12:52:57 2006 for SFH by doxygen 1.3.2