Package org.matheusdev.noises.noise3

Examples of org.matheusdev.noises.noise3.SimplexNoiseLazy3


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

    SimplexNoise3 noise = new SimplexNoise3(width, height, depth, 5, rand, interp);

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


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

    SimplexNoiseLazy3 noise = new SimplexNoiseLazy3(new FastRand().randLong(), 6, 2, interp);

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

TOP

Related Classes of org.matheusdev.noises.noise3.SimplexNoiseLazy3

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.