移動先: 概要 戻り値 MEL 例.

概要

noise [float] float | vector

noise は 「元に戻す」が不可能「照会」が不可能「編集」が不可能 です。

ノイズ機能は、1 次元、2 次元、3 次元のノイズ フィールドの値を戻します。

dnoise コマンドは、ノイズ フィールドの階調を 3 次元で返します。

戻り値

floatノイズ値

MEL 例

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