Examples of NoiseStretch


Examples of two.newdawn.API.noise.NoiseStretch

    }
    public static NoiseStretch getFuzzyStretch(int size, SimplexNoise noise) {
      final Random rng = noise.getRandom();
      final int sizeX = fuzzValue(size, rng);
      final int sizeZ = fuzzValue(size, rng);
      final NoiseStretch stretch =  noise.generateNoiseStretcher(sizeX, sizeZ, rng.nextDouble(), rng.nextDouble());
      return stretch;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.