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:
authorAyke van Laethem <aykevanlaethem@gmail.com>2021-06-22 16:07:30 +0300
committerAyke van Laethem <aykevanlaethem@gmail.com>2021-06-22 16:07:30 +0300
commit7b079f43ff78e3e1d50923eb18e181b51ab7ee84 (patch)
tree132de2741b3eeb663fc3a20ca7d9bb7459f37380 /examples
parentcfffa1351497425931fb9ef5bad0eeb7b0cf8645 (diff)
Fix incorrectly calling perlin noise "Simplex Noise"
Simplex noise is something different and is not implemented by the FastLED library (yet!). Therefore, don't confuse people by calling it Simplex Noise.
Diffstat (limited to 'examples')
-rw-r--r--examples/NoisePlusPalette/NoisePlusPalette.ino2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/NoisePlusPalette/NoisePlusPalette.ino b/examples/NoisePlusPalette/NoisePlusPalette.ino
index 4670cc38..aa360b7c 100644
--- a/examples/NoisePlusPalette/NoisePlusPalette.ino
+++ b/examples/NoisePlusPalette/NoisePlusPalette.ino
@@ -15,7 +15,7 @@ const bool kMatrixSerpentineLayout = true;
// This example combines two features of FastLED to produce a remarkable range of
// effects from a relatively small amount of code. This example combines FastLED's
-// color palette lookup functions with FastLED's Perlin/simplex noise generator, and
+// color palette lookup functions with FastLED's Perlin noise generator, and
// the combination is extremely powerful.
//
// You might want to look at the "ColorPalette" and "Noise" examples separately