Reputation: 1028
I'm thinking of making a 3D renderer, I know all about the XYZ dimensions, and am an intermediate Java programmer. But what should I do for a basic renderer? It has to be really basic, what should I render? A cube, a pyramid? A sphere?
Any answer would be much appreciated. Thank you.
Upvotes: 2
Views: 2515
Reputation: 299
I realized this is an old question but for anyone wondering I suggest you check out this page which goes through the concepts:
Then check out this tutorial on creating a 3D rotating cube. It's really easy to convert python code to a language of choice.
Theres also a javascript version here:
Then check this out, it explains creating a 3D engine:
Upvotes: 1
Reputation: 1379
My favorite first question for 3D rendering was that how to give feeling of depth with just two, perpendicular and angled from perspective, lines. Solve this and I am sure you will end up building your own 3D renderer.
Upvotes: 3