diff options
author | Mattes D <github@xoft.cz> | 2015-07-31 16:49:10 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-07-31 16:49:10 +0200 |
commit | 6e4122e551eeb41d3e950b363dd837d5586fe560 (patch) | |
tree | b5ee221d8a8e63c7d3b7868da1db19bf717a6ffd /src/Noise/Noise.cpp | |
parent | Merge pull request #2400 from cuberite/OffloadBadChunks (diff) | |
download | cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.gz cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.bz2 cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.lz cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.xz cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.zst cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.zip |
Diffstat (limited to 'src/Noise/Noise.cpp')
-rw-r--r-- | src/Noise/Noise.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Noise/Noise.cpp b/src/Noise/Noise.cpp index d8cde6e3d..aa9f0412f 100644 --- a/src/Noise/Noise.cpp +++ b/src/Noise/Noise.cpp @@ -204,16 +204,16 @@ public: const NOISE_DATATYPE * a_FracY ///< Pointer to the attay that stores the Y fractional values ); - /// Uses current m_WorkRnds[] to generate part of the array + /** Uses current m_WorkRnds[] to generate part of the array */ void Generate( int a_FromX, int a_ToX, int a_FromY, int a_ToY ); - /// Initializes m_WorkRnds[] with the specified Floor values + /** Initializes m_WorkRnds[] with the specified Floor values */ void InitWorkRnds(int a_FloorX, int a_FloorY); - /// Updates m_WorkRnds[] for the new Floor values. + /** Updates m_WorkRnds[] for the new Floor values. */ void Move(int a_NewFloorX, int a_NewFloorY); protected: @@ -356,17 +356,17 @@ public: const NOISE_DATATYPE * a_FracZ ///< Pointer to the array that stores the Z fractional values ); - /// Uses current m_WorkRnds[] to generate part of the array + /** Uses current m_WorkRnds[] to generate part of the array */ void Generate( int a_FromX, int a_ToX, int a_FromY, int a_ToY, int a_FromZ, int a_ToZ ); - /// Initializes m_WorkRnds[] with the specified Floor values + /** Initializes m_WorkRnds[] with the specified Floor values */ void InitWorkRnds(int a_FloorX, int a_FloorY, int a_FloorZ); - /// Updates m_WorkRnds[] for the new Floor values. + /** Updates m_WorkRnds[] for the new Floor values. */ void Move(int a_NewFloorX, int a_NewFloorY, int a_NewFloorZ); protected: |