mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-23 04:18:13 +05:00
15 lines
215 B
C++
15 lines
215 B
C++
#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);
|
|
}; |