mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 21:33:37 +00:00
14 lines
242 B
C++
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);
|
|
}; |