maxSegmentLength property
The max segment length of the result, in
GeodesicSectorParameters.linearUnit
.
Implementation
double get maxSegmentLength {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeodesicSectorParameters_getMaxSegmentLength(
_handle,
errorHandler,
);
});
}
Implementation
set maxSegmentLength(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeodesicSectorParameters_setMaxSegmentLength(
_handle,
value,
errorHandler,
);
});
}