Returns all points in Path. @return Path Point array length @see https://fiddle.skia.org/c/@Path_getPoints
()
| 432 | * @see <a href="https://fiddle.skia.org/c/@Path_getPoints">https://fiddle.skia.org/c/@Path_getPoints</a> |
| 433 | */ |
| 434 | public Point[] getPoints() { |
| 435 | Point[] res = new Point[getPointsCount()]; |
| 436 | getPoints(res, res.length); |
| 437 | return res; |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * <p>Returns number of points in Path. Up to max points are copied.</p> |