Add UnitsSchemaMmMin - izes are only in mm, speed in mm/munute.

This commit is contained in:
Itai Nahshon
2017-07-01 11:40:50 +03:00
committed by wmayer
parent 7bcb99dd09
commit a91c5bbae7
6 changed files with 121 additions and 1 deletions

View File

@@ -39,7 +39,8 @@ enum UnitSystem {
Imperial1 = 2, /** the Imperial system (http://en.wikipedia.org/wiki/Imperial_units) */
ImperialDecimal = 3, /** Imperial with length in inch only */
Centimeters = 4, /** All lengths in centimeters, areas and volumes in square/cubic meters */
ImperialBuilding = 5 /** All lengths in feet + inches + fractions */
ImperialBuilding = 5, /** All lengths in feet + inches + fractions */
MmMin = 6, /** All lengths in mm, Speed in mm/min. Usefull for small parts & CNN */
} ;