float anoise(vector pos)
vector anoise(vector pos)
float anoise(vector pos, int turbulence, float rough, float atten)
vector anoise(vector pos, int turbulence, float rough, float atten)
float anoise(vector pos, int periodX, int periodY, int periodZ)
vector anoise(vector pos, int periodX, int periodY, int periodZ)
float anoise(vector pos, int periodX, int periodY, int periodZ, int turbulence, float rough, float atten)
vector anoise(vector pos, int periodX, int periodY, int periodZ, int turbulence, float rough, float atten)
この関数は、“Alligator”ノイズを生成します。これは一種のWorleyノイズ(wnoise)に似たセルラーノイズです。 現在のところ、Worleyノイズ関数を使ってAlligatorノイズを模倣することはできませんが、そのノイズのような“見た目”に近づけることは可能です。
ノイズの範囲は、ほぼ(0, 1)です。この関数は3Dノイズにのみ対応しています。
See also | |
noise |