(c *canvas.Context, x, y float64)
| 22 | } |
| 23 | |
| 24 | func drawPos(c *canvas.Context, x, y float64) { |
| 25 | c.SetFillColor(canvas.Lightblue) |
| 26 | c.SetStrokeColor(canvas.Transparent) |
| 27 | c.DrawPath(x-1.5, y-1.5, canvas.Rectangle(3.0, 3.0)) |
| 28 | } |
| 29 | |
| 30 | func drawControl(c *canvas.Context, x, y float64) { |
| 31 | c.SetFillColor(canvas.Lightblue) |
no test coverage detected