Advertisement
JNordik

Simplex hoise heightmap generator (main)

Jun 2nd, 2013
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. package whitefoxy;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {        
  6.         SimplexNoise noise = new SimplexNoise(0); //Сид (Seed) - 0
  7.         noise.saveImage(simplexNoise.generateHeightmap(512, 8, 0.5F, 0.007F, 0, 255), "C:/", "Heightmap", "png");        
  8.     }
  9.    
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement