pointCount property
The count of points in the part.
The points in the part are the start and end points of segments. Segments can share a point if the end point of one segment matches the start point of the next.
Implementation
int get pointCount {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_MutablePart_getPointCount(
_handle,
errorHandler,
);
});
}