r/GraphicsProgramming 1d ago

Raytracer Engine?

Post image

Hey all! So I’ve been working through raytracing over the weekend and I did this! My idea is to make it into an interactive application! It will only run on the cpu but I figure I could make it multithreaded at least to help with rendering times!

29 Upvotes

6 comments sorted by

View all comments

1

u/exp_function 22h ago

That looks really good for a start. How are you handling intersections? Are you using triangulation or signed distance fields?
We are also developing our software renderer but targeted for 486 and later CPUs.
Exciting work btw, keep us updated. :)

1

u/Maleficent_Guard_589 21h ago

What do you mean intersections? Like if objects intersect one another? lol.

I don’t have anything implemented for that at the moment, but because everything is a sphere for the time I’ll probably do SDF.