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