aboutsummaryrefslogtreecommitdiff
path: root/units.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-05-06 16:09:18 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-05-06 16:09:18 +0200
commit1d55c46df70b5843b7b6b80379dd5abcf80fe1fd (patch)
tree287375f29a792e04cb144eef6de38dfd3e7936a5 /units.go
parent32f3e73424d4742341cbd22b7795757fecd8094d (diff)
Add point unit
Diffstat (limited to 'units.go')
-rw-r--r--units.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/units.go b/units.go
index 7311110..4ee5e2a 100644
--- a/units.go
+++ b/units.go
@@ -5,4 +5,5 @@ const (
CM = 10 * MM
DM = 10 * CM
IN = 25.4 * MM
+ PT = IN / 72
)