- Timestamp:
- Jul 31, 2013, 5:16:03 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/include/Pacpus/PacpusTools/geodesie.h
r148 r149 71 71 }; 72 72 73 Matrice TransMat(const Matrice A); 74 75 Matrice ProdMat(const Matrice A,const Matrice B); 76 void Write(const Matrice A,std::ostream& out); 73 PACPUS_TOOLS_API Matrice TransMat(const Matrice A); 74 PACPUS_TOOLS_API Matrice ProdMat(const Matrice A,const Matrice B); 75 PACPUS_TOOLS_API void Write(const Matrice A,std::ostream& out); 77 76 78 77 //////////////////////////////////////////////////////////////////////// … … 104 103 105 104 //////////////////////////////////////////////////////////////////////// 106 inline double Deg2Rad(double deg) {return deg*M_PI/180.0;} 107 inline double Rad2Deg(double rad) {return rad*180.0/M_PI;} 105 inline double Deg2Rad(double deg) 106 { 107 return deg*M_PI/180.0; 108 } 109 110 inline double Rad2Deg(double rad) 111 { 112 return rad*180.0/M_PI; 113 } 114 108 115 //////////////////////////////////////////////////////////////////////// 109 116
Note:
See TracChangeset
for help on using the changeset viewer.