Tagged Questions
3
votes
2answers
117 views
How to zoom randomly generated maps?
I made a Java program which generates a random map based on Perlin Noise + Poisson Algorithm + Voronoi Diagram. Here you can see a generated map. White are caves, black is empty.
The problem is ...
3
votes
2answers
94 views
Converting double “perlin noise” value to a set of colors
I've been working all day at learning perlin and other methods for generating terrain. I have a 2d top-down game and I need to generate random regions of connected colors. I've been playing with ...
-3
votes
2answers
156 views
Terrain Generation - Advanced [closed]
I need to generate terrain. Easy enough you might say, but I need to create Biomes if you will(Can't link of another name) lakes. Trees and on a height map.
So I have really no idea how to use a ...
5
votes
2answers
352 views
One Dimensional Perlin noise vs Multi-Dimensional
I am reading through a book called "The Nature of Coding" and I am working on porting the examples from Processing.js to Regular old Java. The example I am on uses the following method call in ...
1
vote
1answer
243 views
Saving a list of points into a text file
I recently posted a question about this, but was not really sure where to go. I've gotten some progress, and have generated some simple noise here:
http://pastie.org/5408655
That works well enough ...