blob: ba76f589ec4b592a78b0944e1426ca57f82a8eed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "Synth.h"
class Rotate : public Synth
{
private:
Synth *synth;
double _sin;
double _cos;
public:
Rotate(Synth *synth, float angle);
virtual double getValue(double x, double y);
};
|