USGS

Isis 3.0 Developer's Reference (API)

Home

Constants.h

Go to the documentation of this file.
00001 
00023 #ifndef Constants_h
00024 #define Constants_h
00025 
00026 #include <string>
00027 
00028 namespace Isis {
00053   const double E(2.7182818284590452354);    
00054   const double PI(3.14159265358979323846);   
00055   const double HALFPI(1.57079632679489661923);   
00056   const double TWOPI(6.2831853071795864769253);  // !<Two * PI, a complete revolution
00057   const double DEG2RAD(0.017453292519943295769237);   
00058   const double RAD2DEG(57.29577951308232087679815481);   
00059 
00060 #if (defined(__SunOS__) || defined(__x86_64))
00061   typedef long int BigInt;
00062 #else
00063   typedef long long int BigInt;
00064 #endif
00065 }
00066 
00067 #endif