|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objecttoxi.math.noise.PerlinNoise
public class PerlinNoise
PERLIN NOISE taken from the java port I originally did for PApplet, based on an implementation by the german demo group farbrausch as used in their demo "Art": http://www.farb-rausch.de/fr010src.zip
Constructor Summary | |
---|---|
PerlinNoise()
|
Method Summary | |
---|---|
float |
noise(float x)
Computes the Perlin noise function value at point x. |
float |
noise(float x,
float y)
Computes the Perlin noise function value at the point x, y. |
float |
noise(float x,
float y,
float z)
Computes the Perlin noise function value at x, y, z. |
void |
noiseDetail(int lod)
|
void |
noiseDetail(int lod,
float falloff)
|
void |
noiseSeed(long what)
|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PerlinNoise()
Method Detail |
---|
public float noise(float x)
public float noise(float x, float y)
public float noise(float x, float y, float z)
public void noiseDetail(int lod)
public void noiseDetail(int lod, float falloff)
public void noiseSeed(long what)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |