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