MCPcopy Create free account
hub / github.com/JetBrains/skija / getPoints

Method getPoints

shared/java/Path.java:434–438  ·  view source on GitHub ↗

Returns all points in Path. @return Path Point array length @see https://fiddle.skia.org/c/@Path_getPoints

()

Source from the content-addressed store, hash-verified

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>

Callers 2

storageMethod · 0.80

Calls 3

getPointsCountMethod · 0.95
onNativeCallMethod · 0.95
_nGetPointsMethod · 0.95

Tested by 1

storageMethod · 0.64