ApplyTo applies the action to the given vg.Canvas.
(c vg.Canvas)
| 163 | |
| 164 | // ApplyTo applies the action to the given vg.Canvas. |
| 165 | func (a *SetLineDash) ApplyTo(c vg.Canvas) { |
| 166 | c.SetLineDash(a.Dashes, a.Offsets) |
| 167 | } |
| 168 | |
| 169 | func (a *SetLineDash) callerLocation() *callerLocation { |
| 170 | return &a.l |
nothing calls this directly
no test coverage detected