summaryrefslogtreecommitdiffstats
path: root/src/OctavedNoise.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-11-18 09:49:53 +0100
committerMattes D <github@xoft.cz>2014-11-18 09:49:53 +0100
commitf683872f5423c184d56bc229c7de44b2384c4787 (patch)
treeb9676b82ee033e88bc98e0dd82f8a1d77c4209fa /src/OctavedNoise.h
parentOctavedNoise: linux compilation fixes. (diff)
downloadcuberite-f683872f5423c184d56bc229c7de44b2384c4787.tar
cuberite-f683872f5423c184d56bc229c7de44b2384c4787.tar.gz
cuberite-f683872f5423c184d56bc229c7de44b2384c4787.tar.bz2
cuberite-f683872f5423c184d56bc229c7de44b2384c4787.tar.lz
cuberite-f683872f5423c184d56bc229c7de44b2384c4787.tar.xz
cuberite-f683872f5423c184d56bc229c7de44b2384c4787.tar.zst
cuberite-f683872f5423c184d56bc229c7de44b2384c4787.zip
Diffstat (limited to 'src/OctavedNoise.h')
-rw-r--r--src/OctavedNoise.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/OctavedNoise.h b/src/OctavedNoise.h
index 272a1051e..166d2c205 100644
--- a/src/OctavedNoise.h
+++ b/src/OctavedNoise.h
@@ -32,7 +32,7 @@ public:
oct->SetSeed(a_Seed);
}
}
-
+
/** */
void AddOctave(NOISE_DATATYPE a_Frequency, NOISE_DATATYPE a_Amplitude)
@@ -56,7 +56,7 @@ public:
ASSERT(!"Perlin: No octaves to generate!");
return;
}
-
+
// Allocate the workspace on the heap, if it wasn't given:
std::unique_ptr<NOISE_DATATYPE[]> workspaceHeap;
if (a_Workspace == nullptr)
@@ -78,7 +78,7 @@ public:
{
a_Array[i] = a_Workspace[i] * Amplitude;
}
-
+
// Add each octave:
for (auto itr = m_Octaves.cbegin() + 1, end = m_Octaves.cend(); itr != end; ++itr)
{
@@ -96,8 +96,8 @@ public:
}
} // for itr - m_Octaves[]
}
-
-
+
+
/** Fills a 3D array with the values of the noise. */
void Generate3D(
NOISE_DATATYPE * a_Array, ///< Array to generate into [x + a_SizeX * y + a_SizeX * a_SizeY * z]
@@ -114,7 +114,7 @@ public:
ASSERT(!"Perlin: No octaves to generate!");
return;
}
-
+
// Allocate the workspace on the heap, if it wasn't given:
std::unique_ptr<NOISE_DATATYPE[]> workspaceHeap;
if (a_Workspace == nullptr)
@@ -137,7 +137,7 @@ public:
{
a_Array[i] = a_Workspace[i] * Amplitude;
}
-
+
// Add each octave:
for (auto itr = m_Octaves.cbegin() + 1, end = m_Octaves.cend(); itr != end; ++itr)
{
@@ -169,7 +169,7 @@ protected:
/** Value multiplier. */
NOISE_DATATYPE m_Amplitude;
-
+
cOctave(int a_Seed, NOISE_DATATYPE a_Frequency, NOISE_DATATYPE a_Amplitude) :
m_Noise(a_Seed),
m_Frequency(a_Frequency),
@@ -181,7 +181,7 @@ protected:
/** The seed used by the underlying generators. */
- int m_Seed;
+ int m_Seed;
/** The octaves that compose this noise. */
cOctaves m_Octaves;