2015-09-07 11:44:36 -06:00
|
|
|
|
// interfaces/filters/LowPass.java
|
2015-06-15 17:47:35 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
|
|
|
|
package interfaces.filters;
|
|
|
|
|
|
|
|
|
|
public class LowPass extends Filter {
|
|
|
|
|
double cutoff;
|
|
|
|
|
public LowPass(double cutoff) { this.cutoff = cutoff; }
|
|
|
|
|
@Override
|
|
|
|
|
public Waveform process(Waveform input) {
|
|
|
|
|
return input; // Dummy processing
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|