e0008d3335
The version shipped with the module is now prefixed. Removed usages of OpenSimplexNoise.
16 lines
373 B
C++
16 lines
373 B
C++
#ifndef VOXEL_GD_NOISE_RANGE_H
|
|
#define VOXEL_GD_NOISE_RANGE_H
|
|
|
|
#include "../math/interval.h"
|
|
|
|
class Noise;
|
|
|
|
namespace zylann {
|
|
|
|
math::Interval get_range_2d(const Noise &noise, math::Interval x, math::Interval y);
|
|
math::Interval get_range_3d(const Noise &noise, math::Interval x, math::Interval y, math::Interval z);
|
|
|
|
} // namespace zylann
|
|
|
|
#endif // VOXEL_GD_NOISE_RANGE_H
|