Package org.matheusdev.noises.noise2

Examples of org.matheusdev.noises.noise2.SimplexNoiseLayer2


                return 3 * t2 - 2 * t2 * t;
            }
        };
        final Random rand = new Random();

        SimplexNoise2 noise = new SimplexNoise2(width, height, 6, rand, interp);

        Noise2PngGenerator.gen(noise, width, height);
  }
View Full Code Here


        float t2 = t * t;
        return 3 * t2 - 2 * t2 * t;
      }
    };

    SimplexNoiseLazy2 noise = new SimplexNoiseLazy2(new FastRand().randLong(), 6, 4, interp);

        Noise2PngGenerator.gen(noise, width, height);
  }
View Full Code Here

TOP

Related Classes of org.matheusdev.noises.noise2.SimplexNoiseLayer2

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.