aboutsummaryrefslogtreecommitdiff
path: root/marks.go
blob: f3881459cd75d7f96b8073c920ba9d3aa1db99d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package robo

/*	Landscape		Portrait
	+- H -+			+- W -+
	|x1  3|			|2  1x|

	W ->			   |  H
				   v
	|2			     3|
	+-			     -+
*/
/*
	Type1			Type2

	  |	|		+--	--+
	--+	+--		|	  |


	--+			|
	  |			+--
*/

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})
}