Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/noise.h')
-rw-r--r--src/noise.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/noise.h b/src/noise.h
index 7355e23e..8a0db3f4 100644
--- a/src/noise.h
+++ b/src/noise.h
@@ -9,11 +9,11 @@ FASTLED_NAMESPACE_BEGIN
/// Noise functions provided by the library.
///@defgroup Noise Noise functions
-///Simplex noise function definitions
+///Perlin noise function definitions
///@{
/// @name scaled 16 bit noise functions
///@{
-/// 16 bit, fixed point implementation of perlin's Simplex Noise. Coordinates are
+/// 16 bit, fixed point implementation of Perlin's noise. Coordinates are
/// 16.16 fixed point values, 32 bit integers with integral coordinates in the high 16
/// bits and fractional in the low 16 bits, and the function takes 1d, 2d, and 3d coordinate
/// values. These functions are scaled to return 0-65535
@@ -34,7 +34,7 @@ extern int16_t inoise16_raw(uint32_t x);
/// @name 8 bit scaled noise functions
///@{
-/// 8 bit, fixed point implementation of perlin's Simplex Noise. Coordinates are
+/// 8 bit, fixed point implementation of Perlin's noise. Coordinates are
/// 8.8 fixed point values, 16 bit integers with integral coordinates in the high 8
/// bits and fractional in the low 8 bits, and the function takes 1d, 2d, and 3d coordinate
/// values. These functions are scaled to return 0-255