4jcraft/Minecraft.World/Util/Rotate.h
2026-03-05 03:29:23 -05:00

15 lines
233 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);
};