Package two.newdawn.API.noise

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

Related Classes of two.newdawn.API.noise.NoiseStretch

Copyright © 2018 www.massapicom. 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.