maxPointCount property
The max number of vertices in the ellipse.
Implementation
int get maxPointCount {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeodesicSectorParameters_getMaxPointCount(
_handle, errorHandler);
});
}
Implementation
set maxPointCount(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeodesicSectorParameters_setMaxPointCount(
_handle, value, errorHandler);
});
}