blob: a98982ffb1de1734f91451498bb0d7529b09e741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "Synth.h"
class Distort: public Synth
{
private:
Synth *source;
Synth *distort;
public:
Distort(Synth *source, Synth *distort);
virtual double getValue(double x, double y);
};
|