4jcraft/Minecraft.World/Util/Rotate.h
2026-03-13 17:06:56 -05:00

14 lines
242 B
C++

#pragma once
#include "../WorldGen/Noise/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);
};