startDirection property
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);
});
}
Implementation
set startDirection(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeodesicSectorParameters_setStartDirection(
_handle, value, errorHandler);
});
}