A GlyphDrawer wraps the DrawGlyph function.
| 123 | |
| 124 | // A GlyphDrawer wraps the DrawGlyph function. |
| 125 | type GlyphDrawer interface { |
| 126 | // DrawGlyph draws the glyph at the given |
| 127 | // point, with the given color and radius. |
| 128 | DrawGlyph(*Canvas, GlyphStyle, vg.Point) |
| 129 | } |
| 130 | |
| 131 | // DrawGlyph draws the given glyph to the draw |
| 132 | // area. If the point is not within the Canvas |
no outgoing calls
no test coverage detected