HomeSort by relevance Sort by last modified time
    Searched defs:noiseGenerator (Results 1 - 2 of 2) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGenerator.java 53 protected NoiseGenerator noiseGenerator;
55 public TextureGenerator(NoiseGenerator noiseGenerator) {
56 this.noiseGenerator = noiseGenerator;
87 if ((flag & NoiseGenerator.TEX_COLORBAND) != 0) {
TextureHelper.java 116 protected NoiseGenerator noiseGenerator;
130 noiseGenerator = new NoiseGenerator(blenderVersion);
131 textureGenerators.put(Integer.valueOf(TEX_BLEND), new TextureGeneratorBlend(noiseGenerator));
132 textureGenerators.put(Integer.valueOf(TEX_CLOUDS), new TextureGeneratorClouds(noiseGenerator));
133 textureGenerators.put(Integer.valueOf(TEX_DISTNOISE), new TextureGeneratorDistnoise(noiseGenerator));
134 textureGenerators.put(Integer.valueOf(TEX_MAGIC), new TextureGeneratorMagic(noiseGenerator));
135 textureGenerators.put(Integer.valueOf(TEX_MARBLE), new TextureGeneratorMarble(noiseGenerator));
136 textureGenerators.put(Integer.valueOf(TEX_MUSGRAVE), new TextureGeneratorMusgrave(noiseGenerator));
    [all...]

Completed in 516 milliseconds