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