aboutsummaryrefslogtreecommitdiff
path: root/units.go
diff options
context:
space:
mode:
Diffstat (limited to 'units.go')
-rw-r--r--units.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/units.go b/units.go
index 89abcc3..5a8c88f 100644
--- a/units.go
+++ b/units.go
@@ -5,8 +5,9 @@ import "fmt"
const (
MM = Unit(20.0)
CM = 10 * MM
- DM = 10 * CM
+ M = 100 * CM
IN = 25.4 * MM
+ FT = 12 * IN
PT = IN / 72
)