#include "Noise.h" Noise::Noise() : Framework::ReferenceCounter() {} double Noise::getNoise(Framework::Vec3& pos) { return getNoise(pos.x, pos.y, pos.z); } float Noise::getNoise(float x, float y, float z) { return (float)getNoise((double)x, (double)y, (double)z); }