Go to: Synopsis. Return value. MEL examples.
noise
[float] float | vector
noise is NOT undoable, NOT queryable, and NOT editable.
The noise functions return values of a noise field in one, two, and three dimensions. The dnoise command returns the gradient of the noise field in three dimensions.float | Noise value |
noise 42; // Result: -0.12757 // noise<<10,20,-30>>; // Result: 0.298395 // dnoise<<10,20,-30>>; // Result: <<-0.184902, 0.440937, 0.685714>> //