impedanceCutoff property

double impedanceCutoff

Impedance cutoff.

It's a value for the impedance beyond which facilities should not be found.

Implementation

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

Implementation

set impedanceCutoff(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Facility_setImpedanceCutoff(_handle, value, errorHandler);
  });
}