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
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{discussion}}
==Model==
==Model==
Let M be an x by y terrain map.
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).
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|http://developers.sun.com/downloads/].
==Stories==
===Generation of Terrain===
# User specifies min elevation
# User specifies Max elevation
# User specifies x,y
# Clicks OK
# Map generated
# Clicks save
# Dialog opens and user can save as png file
[[Category:OOC articles]]

Latest revision as of 05:29, 11 July 2019

This article needs to be discussed.
Please enter your input on the discussion page.


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|http://developers.sun.com/downloads/].

Stories

Generation of Terrain

  1. User specifies min elevation
  2. User specifies Max elevation
  3. User specifies x,y
  4. Clicks OK
  5. Map generated
  6. Clicks save
  7. Dialog opens and user can save as png file