Sagnik MandalforCOPS IIT BHUblogs.copsiitbhu.co.in·Oct 9, 2024Let's make a Ray Tracer (in Go)When you build systems from scratch, you get to control everything, from how fast it runs to how it looks in the end. That’s what systems development is all about. It’s not just about coding—it’s about knowing how things work behind the scenes and br...24 likes·172 readsProgramming Blogs
Coder of the Cellarcoderofthecellar.hashnode.dev·Mar 10, 2024How to 0-to-RTX in 20 lines of codeTough times for the computer graphics hobbyists who don't love making AAA game engines, or don't want to use one to stitch together a bunch of render passes and drawing a simple scene. Modern APIs such as Vulkan and DirectX 12 are made for those big ...105 readsraytracing
Gowtham AnandarajforRay Tracing tutorial from MIT-ITraytracingmitit.hashnode.dev·May 29, 2023Adding a SphereOne commonly employed object in ray tracing is the sphere due to its straightforward ray intersection calculations. Ray-Sphere Intersection For a sphere centered at the origin with a radius of R, the equation representing the sphere is x^2 + y^2 + z^...40 readsC++