aboutsummaryrefslogtreecommitdiff
path: root/units.go
diff options
context:
space:
mode:
Diffstat (limited to 'units.go')
-rw-r--r--units.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/units.go b/units.go
new file mode 100644
index 0000000..7a6ab47
--- /dev/null
+++ b/units.go
@@ -0,0 +1,8 @@
+package main
+
+const (
+ MM = 20.0
+ CM = 10 * MM
+ DM = 10 * CM
+ Inch = 25.4 * MM
+)