Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

13 lines
325 B
Java

//: interfaces/filters/LowPass.java
// ©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
}
} ///:~