4jcraft/targets/minecraft/world/level/levelgen/synth/Rotate.h
2026-04-01 13:27:58 -05:00

14 lines
224 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);
};