aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-05-08 13:39:11 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-05-08 13:39:11 +0200
commit8ec2886b20c974747c767e3d589d5823f328f64d (patch)
tree57ccf2f5227e8936caea085088411ac123ab7200
parent16baef0756350f6d312053138892c300d1fe30ed (diff)
Add Foot and Meter
-rw-r--r--doc/cc100.txt2
-rw-r--r--units.go3
2 files changed, 3 insertions, 2 deletions
diff --git a/doc/cc100.txt b/doc/cc100.txt
index 4680b29..ac6100a 100644
--- a/doc/cc100.txt
+++ b/doc/cc100.txt
@@ -49,7 +49,7 @@ FY Track Enhancment
TB50,0 ... Landcape ?
TB50,1 ... Portrait ?
TB51,n Registration Marks Length
-TB55,1 ...
+TB55,1 ... Type 2 reg marks ???
TB70 Calibrate
TB71 Get Calibration
TB72,p Set Calibration
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
)