Tagged Questions

5
votes
4answers
1k views

How to create a fractal cube?

I would like to render volumetric clouds in OpenGL. I found an interesting paper that describes a simple technique to render volumetric clouds. (http://www.inframez.com/events_volclouds_slide18.htm) ...
2
votes
1answer
223 views

Texture coordinates for dynamic terrain - OpenGL

Can someone please describe a common technique used to calculate texture coordinates for a terrain that dynamically changes every frame? I have a perlin noise function implemented in a vertex shader ...
0
votes
2answers
553 views

Perlin's Noise with OpenGL

I was studying Perlin's Noise through some examples @ http://dindinx.net/OpenGL/index.php?menu=exemples&submenu=shaders and couldn't help to notice that his make3DNoiseTexture() in perlin.c uses ...
0
votes
2answers
729 views

Procedural Planets, Heightmaps and textures

I am currently working on an OpenGL procedural planet generator. I hope to use it for a space RPG, that will not allow players to go down to the surface of a planet so I have ignored anything ROAM ...