Terrain Generator: Difference between revisions

From 118Wiki
Jump to navigation Jump to search
(Created page with '==Model== Let M be an x by y terrain map. Any two adjacent points (x_1, y_1) and (x_2, y_2) may differ in elevation by a max of (max_elevation - min_elevation).')
 
No edit summary
Line 3: Line 3:


Any two adjacent points (x_1, y_1) and (x_2, y_2) may differ in elevation by a max of (max_elevation - min_elevation).
Any two adjacent points (x_1, y_1) and (x_2, y_2) may differ in elevation by a max of (max_elevation - min_elevation).
==Implementation==
The tool will be written in Java, allowing anyone to run it as long as they have a copy of [[http://developers.sun.com/downloads/|Sun's Java]].

Revision as of 01:45, 9 January 2010

Model

Let M be an x by y terrain map.

Any two adjacent points (x_1, y_1) and (x_2, y_2) may differ in elevation by a max of (max_elevation - min_elevation).

Implementation

The tool will be written in Java, allowing anyone to run it as long as they have a copy of [Java].