aboutsummaryrefslogtreecommitdiff
path: root/testpattern.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-05-15 02:40:28 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-05-15 02:40:28 +0200
commitada146f45cac107928c55780b0adad94d332cdc6 (patch)
tree4bb93690cf38728990b7f4b77fb0186eb61e8bd8 /testpattern.go
parente3cae1b64560df748350dc4c0b11a95ac3a1d4f6 (diff)
Add more methods
Diffstat (limited to 'testpattern.go')
-rw-r--r--testpattern.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/testpattern.go b/testpattern.go
index a8aa637..e761fd5 100644
--- a/testpattern.go
+++ b/testpattern.go
@@ -2,8 +2,8 @@ package main
func (c Cutter) TestPattern() {
c.Factor(Triple{100, 100, 100})
- c.Offset(Origin)
- c.WriteLowerLeft(Origin)
+ c.Offset(Point{0, 0})
+ c.WriteLowerLeft(Point{0, 0})
c.Move(Point{510, 637})
c.Bezier(1, Point{510, 637}, Point{439, 637},
@@ -27,5 +27,5 @@ func (c Cutter) TestPattern() {
c.Move(Point{510, 1018})
c.Draw(Point{510, 2})
- c.Move(Origin)
+ c.Move(Point{0, 0})
}