currentBearingTolerance property

double currentBearingTolerance

Current bearing tolerance in degrees. Valid values are 0 to 180 or NaN.

Implementation

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

Implementation

set currentBearingTolerance(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Incident_setCurrentBearingTolerance(
      _handle,
      value,
      errorHandler,
    );
  });
}