axisDirection property

double axisDirection

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);
  });
}
void axisDirection=(double value)

Implementation

set axisDirection(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GeodesicEllipseParameters_setAxisDirection(
        _handle, value, errorHandler);
  });
}