Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open-source fractal maps [closed]

I'm interested in creating a game that uses fractal maps for more realistic geography. However, the only fractal map programs I have found are Windows-only, for example Fractal Mapper. Needless to say, they are also not open-sourced.

Are there any open-sourced fractal map creators available, preferably in Python or C/C++? Ideally I would like something that can be "plugged into" a program, rather then being standalone.

like image 399
crystalattice Avatar asked Oct 01 '08 11:10

crystalattice


2 Answers

Fracplanet may be of use.

like image 134
nosklo Avatar answered Oct 04 '22 20:10

nosklo


Basic terrain generation involves creating a height map (an image) and rendering it using the pixel colour as height. So you may find image or texture generation code useful. This is a good tutorial.

like image 27
Liam Avatar answered Oct 04 '22 21:10

Liam