File: ImprovedNoise.md | Updated: 11/15/2025
A utility class providing a 3D noise function.
The code is based on IMPROVED NOISE by Ken Perlin, 2002.
ImprovedNoise is an addon, and must be imported explicitly, see Installation#Addons.
import { ImprovedNoise } from 'three/addons/math/ImprovedNoise.js';
Returns a noise value for the given parameters.
x | The x coordinate.
---|---
y | The y coordinate.
z | The z coordinate.
Returns: The noise value.