startDirection property

double startDirection

The direction of starting radius of the sector as an angle, in GeodesicSectorParameters.angularUnit.

Implementation

double get startDirection {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeodesicSectorParameters_getStartDirection(
      _handle,
      errorHandler,
    );
  });
}
void startDirection=(double value)

Implementation

set startDirection(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GeodesicSectorParameters_setStartDirection(
      _handle,
      value,
      errorHandler,
    );
  });
}