ApplyTo applies the action to the given vg.Canvas.
(c vg.Canvas)
| 398 | |
| 399 | // ApplyTo applies the action to the given vg.Canvas. |
| 400 | func (a *FillString) ApplyTo(c vg.Canvas) { |
| 401 | c.FillString(a.fonts[fontID{name: a.Font.Name(), size: a.Size}], a.Point, a.String) |
| 402 | } |
| 403 | |
| 404 | // Call returns the pseudo method call that generated the action. |
| 405 | func (a *FillString) Call() string { |
nothing calls this directly
no test coverage detected