How is the terrain in games like "Moon buggy", "Route 960" or similar made ?

I dont't mean the "Scorch" or "Worms" like terrain with many peaks, but I look for a way to generate smooth terain with hills and ditches, smooth enough to let a vehicle drive over it.

link|improve this question

73% accept rate
1  
You should try asking at gamedev.stackexchange.com :) (And also probably looking at sine waves would be a good place to start) – Harold Apr 11 '11 at 8:19
feedback

2 Answers

up vote 2 down vote accepted
Initiate array of random heights

Blur:

foreach height in heights:
  new height = mean of all heights in radius N and center in current height

blur will satisfy your condition of smoothing

link|improve this answer
feedback

You want to look for a space-filling-curve, or a spatial index, for example a hilbert curve or a z-curve. It recursivley subdivide the surface into tiles and reduce the 2d problem into a 1d problem but it is basically a reordering of the tiles. You want to look for Nick's spatial index quadtree hilbert-curve blog.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.