#include "PerlinGround.hpp" PerlinGround::PerlinGround() : surface(PerlinNoise()) {} PerlinGround::PerlinGround(unsigned int seed) : surface(PerlinNoise(seed)) {} double PerlinGround::operator() (double x, double z) const { return surface.noise(x, z); }