NewFigure starts a new figure in the DrawPath. The current point is set to the given point.
(x float64, y float64)
| 75 | // NewFigure starts a new figure in the DrawPath. The current point |
| 76 | // is set to the given point. |
| 77 | func (p *DrawPath) NewFigure(x float64, y float64) { |
| 78 | C.uiDrawPathNewFigure(p.p, C.double(x), C.double(y)) |
| 79 | } |
| 80 | |
| 81 | // NewFigureWithArc starts a new figure in the DrawPath and adds |
| 82 | // an arc as the first element of the figure. Unlike ArcTo, |
no outgoing calls
no test coverage detected