GlyphBoxes implements the Plotter interface, drawing all of the glyph boxes of the plot. This is intended for debugging.
| 16 | // all of the glyph boxes of the plot. This is intended for |
| 17 | // debugging. |
| 18 | type GlyphBoxes struct { |
| 19 | draw.LineStyle |
| 20 | } |
| 21 | |
| 22 | func NewGlyphBoxes() *GlyphBoxes { |
| 23 | g := new(GlyphBoxes) |
nothing calls this directly
no outgoing calls
no test coverage detected