Tagged Questions

5
votes
9answers
2k views

What ways are there of drawing 3D trees using Java and OpenGL?

I know how to draw basic objects using JOGL or LWJGL to connect to OpenGL. What I would like is something that can generate some kind of geometry for trees, similar to what SpeedTree is famous for. ...
1
vote
1answer
242 views

Problems mapping cubemaps to a sphere

I'm currently trying to create a procedural planet generating tool. I have started off by mapping a cube to a sphere like so: Next I'm using Libnoise to a heightmap cube using 3D Perlian noise. I ...
0
votes
3answers
217 views

OpenGL: Texture size and video memory

I'm making a Worms-style bitmap destructible terrain game using OpenGL. I'd like to know where the limitiations in terms of video memory are for the size of the worlds. Currently, I use blocks of ...
0
votes
2answers
767 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 ...