]> Shamusworld >> Repos - architektonas/blob - src/units.h
Added base units & display style to drawing.
[architektonas] / src / units.h
1 #ifndef __UNITS_H__
2 #define __UNITS_H__
3
4 #include <QString>
5 #include "structs.h"
6
7 #define INCHES_TO_MM  25.4
8 #define MM_TO_INCHES  (1.0 / 25.4)
9
10 QString GetDimensionText(Container *, double);
11 QString MakeFraction(double, int);
12
13 #endif // __UNITS_H__