Merge pull request #22274 from JFonS/add_noise_textures

Fix typo in SimplexNoise documentation
This commit is contained in:
Rémi Verschelde 2018-09-20 11:05:52 +02:00 committed by GitHub
commit a65d9d96ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@
print("Values:")
print(noise.get_noise_2d(1.0, 1.0))
print(noise.get_noise_3d(0.5, 3.0, 15.0))
print(noise.get_noise_3d(0.5, 1.9, 4.7, 0.0))
print(noise.get_noise_4d(0.5, 1.9, 4.7, 0.0))
[/codeblock]
</description>
<tutorials>