From 2fa4993cadd9c64689272e31e8f9e01afeb68c69 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Wed, 24 Apr 2013 14:35:13 +0000 Subject: MultiStepMap BiomeGen: made 3x faster by using 2D noise instead of 3D noise. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1410 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Generating/BioGen.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'source/Generating/BioGen.h') diff --git a/source/Generating/BioGen.h b/source/Generating/BioGen.h index ad3ff01a3..cdb05b92e 100644 --- a/source/Generating/BioGen.h +++ b/source/Generating/BioGen.h @@ -175,7 +175,14 @@ public: cBioGenMultiStepMap(int a_Seed); protected: - cNoise m_Noise; + // Noises used for composing the perlin-noise: + cNoise m_Noise1; + cNoise m_Noise2; + cNoise m_Noise3; + cNoise m_Noise4; + cNoise m_Noise5; + cNoise m_Noise6; + int m_Seed; int m_OceanCellSize; int m_MushroomIslandSize; -- cgit v1.2.3