applyScale method

void applyScale(
  1. double scale
)
inherited

Implementation

void applyScale(double scale) {
  // For higher order filters it might be helpful
  // to spread this factor between all the stages.
  if (_biquads.length > 0) {
    _biquads[0].applyScale(scale);
  }
}