diff options
author | Mattes D <github@xoft.cz> | 2014-11-19 16:58:27 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-19 16:58:27 +0100 |
commit | fef4133f6d7a3bbd08cba15034d0004aa1a76753 (patch) | |
tree | ba0776b563e49ee44427630e241cf7b5e192d261 /src/Generating/Noise3DGenerator.h | |
parent | cOctavedNoise: Removed misleading comment, fixed assert texts. (diff) | |
download | cuberite-fef4133f6d7a3bbd08cba15034d0004aa1a76753.tar cuberite-fef4133f6d7a3bbd08cba15034d0004aa1a76753.tar.gz cuberite-fef4133f6d7a3bbd08cba15034d0004aa1a76753.tar.bz2 cuberite-fef4133f6d7a3bbd08cba15034d0004aa1a76753.tar.lz cuberite-fef4133f6d7a3bbd08cba15034d0004aa1a76753.tar.xz cuberite-fef4133f6d7a3bbd08cba15034d0004aa1a76753.tar.zst cuberite-fef4133f6d7a3bbd08cba15034d0004aa1a76753.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/Noise3DGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Generating/Noise3DGenerator.h b/src/Generating/Noise3DGenerator.h index d198c5498..07767ba84 100644 --- a/src/Generating/Noise3DGenerator.h +++ b/src/Generating/Noise3DGenerator.h @@ -47,7 +47,8 @@ protected: /** The base 3D noise source for the actual composition */ cOctavedNoise<cInterp5DegNoise> m_Perlin; - cCubicNoise m_Cubic; // The noise used for heightmap directing + /** The noise used for heightmap directing. */ + cOctavedNoise<cInterp5DegNoise> m_Cubic; int m_SeaLevel; NOISE_DATATYPE m_HeightAmplification; |