Skip to content

Latest commit

 

History

History
22 lines (22 loc) · 891 Bytes

README.md

File metadata and controls

22 lines (22 loc) · 891 Bytes

pRayTracer

A fairly fast simple ray tracer built from scratch in C++. Currently it features the following:

  • Sphere objects with the following customizable properties:
    • Color
    • Transparency
    • Reflectivity
    • Material (only diffuse and glass objects as of now)
  • A configuration class to adjust:
    • Screen size
    • FOV
    • Maximum ray depth
  • Single light source (which can be easily extended) with customizable:
    • Origin
    • Brightness
  • Schlick's approximation for fast and accurate transmittance/reflectance
  • Saving files in .ppm format (version P3)

Things to do:

  • Parallelize the trace calls (should be very easy)
  • Add different type of objects (triangles, triangles and more triangles)
  • Add an interface for multiple light sources that can emit different colors
  • Gamma correction, fuzzy reflection and many other filters/effects