aboutsummaryrefslogtreecommitdiff
path: root/marks.go
diff options
context:
space:
mode:
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})
+}