OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NoiseFunctions
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorVoronoi.java
100
NoiseGenerator.
NoiseFunctions
.voronoi(texvec[0], texvec[1], texvec[2], da, pa, mexp, distm);
NoiseGenerator.java
132
protected static Map<Integer, NoiseFunction>
noiseFunctions
= new HashMap<Integer, NoiseFunction>();
134
noiseFunctions
.put(Integer.valueOf(0), new NoiseFunction() {
138
return
NoiseFunctions
.originalBlenderNoise(x, y, z);
143
return 2.0f *
NoiseFunctions
.originalBlenderNoise(x, y, z) - 1.0f;
146
noiseFunctions
.put(Integer.valueOf(1), new NoiseFunction() {
150
return 0.5f + 0.5f *
NoiseFunctions
.noise3Perlin(x, y, z);
155
return
NoiseFunctions
.noise3Perlin(x, y, z);
158
noiseFunctions
.put(Integer.valueOf(2), new NoiseFunction() {
162
return 0.5f + 0.5f *
NoiseFunctions
.newPerlin(x, y, z);
170
noiseFunctions
.put(Integer.valueOf(3), new NoiseFunction() {
[
all
...]
Completed in 27 milliseconds