I took a computer graphics course (graduate level) this past year. We spent the semester building a ray tracer and adding features to it. We built everything from scratch in C++, presumably for the purpose of gaining a better understanding of the underlying data structures and algorithms. Here's my question: If I were to get a job in industry with computer graphics, would people think I was crazy if I started building everything from the ground up for ray tracing like this? Are there graphics libraries and frameworks similar to OpenGL which support ray tracing? Does OpenGL itself support ray tracing?

My professor for the course is an expert in the fundamentals of computer graphics theory and the relevant mathematics, but doesn't have any understanding of modern frameworks and libraries which are used by professionals for computer graphics. She's more of a scientist than a practitioner.

If I were to use a library to help me out with ray tracing, it would probably be good if it supported distributing the computations to a cluster of computers. I could also use a book recommendation, if you know of one which would help bridge this gap in my understanding. Thanks!

link|improve this question
Try gamedev.stackexchange.com. – Matt Ball Aug 22 '11 at 2:45
3  
Did somebody here order a large ham? – Henning Makholm Aug 22 '11 at 2:45
@Matt Ball, GameDev may not be the best forum for this question; Ray tracing is used in the movie industry, but not so much in the video game industry because of it's computationally intensive nature. – Gwen Avery Aug 22 '11 at 2:47
@Gwen Avery We might see more real-time raytracing in/on future GPUs :) NVidia has some pretty demos. – pst Aug 22 '11 at 2:48
@pst I've seen those demos! Good stuff! – Gwen Avery Aug 22 '11 at 2:53
show 3 more comments
feedback

closed as off topic by cdhowie, Henning Makholm, Matt Ball, jweyrich, Michael Petrotta Aug 22 '11 at 3:09

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

up vote 1 down vote accepted

Although I'm sure there are a number of specialized commercial products, I think overall the most widely used package is the open-source POVRay. POVRay is powerful, easy to use, scriptable and extensible, and it can do an amazing range of things out of the box. Check out their site for an enormous gallery of ray-traced art, including the scripts used to create some fantastic pieces.

This reads like astroturf, but I swear, I'm just a happy user.

link|improve this answer
There are other OSS raytracers, like Yaf(a)Ray and also a few raytracing frameworks. – datenwolf Aug 22 '11 at 7:35
@datenwolf do you happen to know the names of some of the raytracing frameworks? – Gwen Avery Aug 22 '11 at 22:35
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.