axisDirection property

double axisDirection

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

Implementation

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