Perlin noise: Difference between revisions

Content deleted Content added
Wherrera (talk | contribs)
julia example
Wherrera (talk | contribs)
Line 713: Line 713:
end
end


x = perlinsnoise(3.14, 42.0, 7.0)
println("Perlin noise applied to (3.14, 42.0, 7.0) gives ", perlinsnoise(3.14, 42.0, 7.0))

println("Perlin noise applied to (3.14, 42.0, 7.0) gives ", x)
</lang>{{out}}
</lang>{{out}}
<pre>
<pre>
Perlin noise applied to (3.14, 42.0, 7.0) gives 0.13691995878400012
Perlin noise applied to (3.14, 42.0, 7.0) gives 0.13691995878400012
</pre>
</pre>



=={{header|Kotlin}}==
=={{header|Kotlin}}==