axisDirection property
The direction of the major axis of the ellipse as an angle in
GeodesicSectorParameters.angularUnit
.
Implementation
double get axisDirection {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeodesicSectorParameters_getAxisDirection(
_handle,
errorHandler,
);
});
}
Implementation
set axisDirection(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeodesicSectorParameters_setAxisDirection(
_handle,
value,
errorHandler,
);
});
}