maxPointCount property

int maxPointCount

The max number of vertices in the ellipse.

Implementation

int get maxPointCount {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeodesicEllipseParameters_getMaxPointCount(
      _handle,
      errorHandler,
    );
  });
}
void maxPointCount=(int value)

Implementation

set maxPointCount(int value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GeodesicEllipseParameters_setMaxPointCount(
      _handle,
      value,
      errorHandler,
    );
  });
}