initial version

This commit is contained in:
2016-01-21 11:10:55 +01:00
parent 8818a9b216
commit a7dc0cabbb
21 changed files with 1397 additions and 0 deletions

16
geo/Units.h Executable file
View File

@@ -0,0 +1,16 @@
#ifndef UNITS_H
#define UNITS_H
class Units {
public:
/** convert from m to cm */
template <typename T> static inline T mToCm(const T m) {return m * 100;}
/** convert from cm to m */
template <typename T> static inline T cmToM(const T cm) {return cm / 100;}
};
#endif // UNITS_H