sectorAngle property

double sectorAngle

The sweep angle of the sector, in GeodesicSectorParameters.angularUnit. The sweep angle goes clockwise from the starting radius.

Implementation

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

Implementation

set sectorAngle(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GeodesicSectorParameters_setSectorAngle(
      _handle,
      value,
      errorHandler,
    );
  });
}