Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
360 views

WebGL - Textured terrain with heightmap

I'm trying to create a 3D terrain using WebGL. I have a jpg with the texture for the terrain, and another jpg with the height values (-1 to 1). I've looked at various wrapper libraries (like SpiderGL ...
4
votes
3answers
239 views

Simulating fluid flow over a heightmap

I am looking for a way to approximate a volume of fluid moving over a heightmap. The easiest solution I can think of is to approximate it as a large number of non-drawn spheres, of small diameter ...
2
votes
2answers
36 views

How to optimize my custom mapformat (Java)

I'm creating a 3D game where I have a large open world (200×200 kilometers), that uses a heightmap. I divide the heightmap in 200×200 = 40,000 regions of 1000×1000 meter, and those are again divided ...
2
votes
1answer
232 views

How to correctly get the terrain height at point (x,z) in a scaled terrain

To properly map every pixel of a heightmap image to a terrain, we will end up with a terrain both in width and length 1 unit less that the actual width and length of the heightmap. For instance, if we ...
1
vote
1answer
78 views

OpenGL height-map painting using CUDA VBO

I've asked several questions regarding VBO previously here and from the comments i had received i decided that a new approach must be taken. To put it simply - I'm trying to draw the Mandelbrot set ...
1
vote
2answers
111 views

OpenGL Terrain Colission Detection

Okay, I have some procedurally generated terrain (based loosely on http://www.swiftless.com/terraintuts.html) Ive got a teapot "plane" which you can fly around in (third person camera) Basically, ...
1
vote
1answer
176 views

Straight line to curved

I am trying to come up with a technique to generate a height map for a meteor crater. I'm trying to keep is small and simple at the moment, and have a simple algorithm where the centre of the crater ...
0
votes
0answers
73 views

Heightmap based on canvas data

I made this kind of rain-like algorithm for last night. (click the blue area to interact with it, works in late versions of chrome at least) http://gustavstromberg.se/sandbox/html5/canvas/rain.php ...
0
votes
0answers
12 views

Does Any one know to export plane which is model with 3d max to Height Map raw file

I've made a terrain with plane in 3dmax. But I want to use this in d3d. Fortunately I found to show terrain with height map. But How can I make height map raw file with 3d model terrain.
0
votes
1answer
209 views

Help me with WebGL and a heightmap with many texture splatted/blended

I would like to begin a new hobby project which is a real-time strategy game on WebGL. My past RTS game was simple and it was made with XNA/C#. Now I want it on the web and I want a proper terrain. I ...
0
votes
1answer
106 views

Spherical 3D Visualization of Topographic Map

i can generate terrain of whole Earth from Height-Map Data, Topographic. The terrain that is generated, it is straight. I need to convert it into a sphere and show an actual planet(Earth\Sphere) ...
0
votes
1answer
109 views

Graphical Glitch Xna GraphicsTutorial - Debug

My terrain gets weird colors like this: http://tinypic.com/view.php?pic=307w421&s=7 Does anyone have any idea what is going wrong here? In what area of my code (conceptually) should I look to ...
0
votes
0answers
457 views

What is the theory behind a voxel heightmap?

I'm, trying to write a voxel heightmap script. What's the best way to go about it? How can I accomplish this? In C#, preferably.