PerlinNim
PerlinNim copied to clipboard
Octave loop range fix
Hello, I noticed that there is an issue with the octave range in the applyOctaves template. It will always run octaves + 1 times. This small change fixes the issue:
- for i in 0..self.octaves:
+ for i in 0..<self.octaves: