Go to: Synopsis. Return value. MEL examples.

Synopsis

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.

Return value

floatNoise value

MEL examples

noise 42;
// Result: -0.12757 //
noise<<10,20,-30>>;
// Result: 0.298395 //
dnoise<<10,20,-30>>;
// Result: <<-0.184902, 0.440937, 0.685714>>  //