aboutsummaryrefslogtreecommitdiff
path: root/cutter.go
diff options
context:
space:
mode:
Diffstat (limited to 'cutter.go')
-rw-r--r--cutter.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/cutter.go b/cutter.go
index 5a3507c..6f57ab4 100644
--- a/cutter.go
+++ b/cutter.go
@@ -34,6 +34,13 @@ type Point struct {
Usable: 4000x5440 pt
*/
+type OnOff int
+
+const (
+ On OnOff = iota
+ Off
+)
+
var (
A4 = Point{5440, 4000} // Portrait
Origin = Point{0, 0}