jpverkamp / noise

3D Perlin and simplex noise generators in Racket
MIT License
14 stars 2 forks source link

Perlin and simple noise generators for Racket.

; Generate 1D/2D/3D Perlin noise
; Always uses a 3D generator in the background
(perlin x [y 0.0] [z 0.0])

; Generate 1D/2D/3D simplex noise
; Always uses a 3D generator in the background
(simplex x [y 0.0] [z 0.0])