I need to make a sphere ray-tracer in c/c++ without the use of OpenGL. I'm confused though at how to put a sphere or light in a scene without any gl functions. Can someone please explain how this can be done?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Raytracing has nothing to do with opengl. It can be done with a desktop calculator. The point is that it's pure geometry done with vectors, that are essentially three floating point variables. (or even integers). You "put" your camera at origin: ox=0, oy=0, oz=0. You "put" your sphere at 5 "meters" or units towards z-axis: sx=0,sy=0,sz=5; You start to cast rays at 90 degree Field of View towards z-axis:
In the end you have calculated pixel intensities or color values for ~200 x 200 image. This example uses 90 degree FoV. |
|||||||
|