Some code sketchings for an idea I have to do a presentation on the effects of different coding styles on design and performance. It's a trivial path tracer (an extended homage to smallpt.cpp) implemented three different ways.
Tentative "ways" of storing the scene:
- Traditional OO with interfaces and virtual calls
- Functional style with std::variant
constexpr
all the things (maybe), or pure C ish?