(pc *paint.Context, pos math32.Vector2, size float32)
| 60 | } |
| 61 | |
| 62 | func DrawRing(pc *paint.Context, pos math32.Vector2, size float32) { |
| 63 | pc.DrawCircle(pos.X, pos.Y, size) |
| 64 | pc.Stroke() |
| 65 | } |
| 66 | |
| 67 | func DrawCircle(pc *paint.Context, pos math32.Vector2, size float32) { |
| 68 | pc.DrawCircle(pos.X, pos.Y, size) |
no test coverage detected