summaryrefslogtreecommitdiffstats
path: root/src/Generating/Noise3DGenerator.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-11-19 16:58:27 +0100
committerMattes D <github@xoft.cz>2014-11-19 16:58:27 +0100
commitfef4133f6d7a3bbd08cba15034d0004aa1a76753 (patch)
treeba0776b563e49ee44427630e241cf7b5e192d261 /src/Generating/Noise3DGenerator.h
parentcOctavedNoise: Removed misleading comment, fixed assert texts. (diff)
downloadcuberite-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 'src/Generating/Noise3DGenerator.h')
-rw-r--r--src/Generating/Noise3DGenerator.h3
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;