13 lines
325 B
Java
13 lines
325 B
Java
|
//: interfaces/filters/LowPass.java
|
|||
|
// <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
|
|||
|
}
|
|||
|
} ///:~
|