I need to know what is the procedure to draw any random 3d image.
Thanks in advance.
Printable View
I need to know what is the procedure to draw any random 3d image.
Thanks in advance.
3D rendering isn't simple. It requires mechanisms such as shaders, z-buffers, etc. A LOT of complicated math goes into translating 3D coordinate space points onto a 2D pixel grid.
If you want to render 3D figures in Java, you will need a graphics API capable of such:
Examples:
-OpenGL
-jMonkeyEngine
-LWJGL
-Java3D