Skip to content

saj122/RayTracer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RayTracer

    In 3D computer graphics, ray tracing is a rendering technique for generating an image by tracing the path of light as pixels in an image plane and simulating the effects of its encounters with virtual objects.

The technique is capable of producing a high degree of visual realism, more so than typical scanline rendering methods, but at a greater computational cost.

-- https://en.wikipedia.org/wiki/Ray_tracing_(graphics)

Project

    My application is a ray tracer program that generates an image of spheres of varying materials. I used the concept of recursion in sampling each pixel from each ray cast. Basic polymorphism was used in creating materials and shapes. This allowed the calling of virtual functions when testing ray intersections and material appearance. Multithreading is used to calculate intersections, as well as, the scattering of light function for each pixel. Eventually this can be moved to the GPU for even faster acceleration.

Result

Ray Traced Image

Building and Running

Tested with Windows using:

  • CMake GUI
  • Visual studio 2019
  • C++ 17

        Make a build directory.

        cmake GUI - Specify 2019 as the compiler. Configure and generate solution files.

        Open in visual studio 2019. Build and run.

Image will be rendered and saved where the exe is located.

Tested with Linux using:

  • CMake
  • Visual studio code
  • GCC 9
  • C++ 17

        mkdir build

        cd build

        cmake ..

        make

        ./RayTracer

Image will be rendered and saved in the build folder.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published