Changeset 224 in pacpusframework for trunk/include/Pacpus
- Timestamp:
- Nov 22, 2013, 12:17:52 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/PacpusTools/geodesie.h
r220 r224 15 15 #ifndef GEODESIE_H 16 16 #define GEODESIE_H 17 18 #ifdef _MSC_VER 19 # pragma warning(push) 20 # pragma warning(disable: 4251 4275) 21 #endif // _MSC_VER 17 22 18 23 #include "PacpusToolsConfig.h" … … 204 209 using ::std::sin; 205 210 206 x = r * cos(theta);207 y = r * sin(theta);211 x = _T2(r * cos(theta)); 212 y = _T2(r * sin(theta)); 208 213 } 209 214 … … 244 249 } // namespace Geodesie 245 250 251 #ifdef _MSC_VER 252 # pragma warning(pop) 253 #endif // _MSC_VER 254 246 255 #endif // GEODESIE_H
Note:
See TracChangeset
for help on using the changeset viewer.