aboutsummaryrefslogtreecommitdiff
path: root/marks.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-11-13 23:07:57 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-11-13 23:07:57 +0100
commit360abb4272dea659de237b1c58d46acc1746ffa7 (patch)
treef5179314f79efef9ee3f8730816770f35c65d6a3 /marks.go
parent82d7cd0f7a405e81b06b9dfd47de324d54505618 (diff)
Add more commands
Diffstat (limited to 'marks.go')
-rw-r--r--marks.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/marks.go b/marks.go
index 385cda6..9284693 100644
--- a/marks.go
+++ b/marks.go
@@ -45,3 +45,9 @@ func DrawMarks(c *bufio.Writer, offset, size Point, length int) {
Point{5240, 200}.Draw(c)
Point{5240, 600}.Draw(c)
}
+
+func (r Robo) DrawMarks() {
+ r.Line(Point{600, 3800}, Point{200, 3800}, Point{200, 3400})
+ r.Line(Point{200, 600}, Point{200, 200}, Point{600, 200})
+ r.Line(Point{4840, 200}, Point{5240, 200}, Point{5240, 600})
+}