views:

111

answers:

1

I have been looking at this game called Minecraft and was intrigued by how it can dynamically generate random maps that look and feel right. What types of algorithms are used to generate terrains based on cubes like this?

Thanks

+1  A: 

Perlin noise usually works really nicely.

Its also worth looking into midpoint dispacement (or the diamond square algorithm)

Goz