gitextract_58la6ck5/ ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING.txt ├── PRINTING.md ├── README.md ├── books/ │ ├── RayTracingInOneWeekend.html │ ├── RayTracingTheNextWeek.html │ ├── RayTracingTheRestOfYourLife.html │ └── acknowledgments.md.html ├── images/ │ ├── cover/ │ │ ├── CoverRTW1.psd │ │ ├── CoverRTW2.psd │ │ └── CoverRTW3.psd │ └── test.ppm ├── index.html ├── src/ │ ├── InOneWeekend/ │ │ ├── camera.h │ │ ├── color.h │ │ ├── hittable.h │ │ ├── hittable_list.h │ │ ├── interval.h │ │ ├── main.cc │ │ ├── material.h │ │ ├── ray.h │ │ ├── rtweekend.h │ │ ├── sphere.h │ │ └── vec3.h │ ├── TheNextWeek/ │ │ ├── aabb.h │ │ ├── bvh.h │ │ ├── camera.h │ │ ├── color.h │ │ ├── constant_medium.h │ │ ├── hittable.h │ │ ├── hittable_list.h │ │ ├── interval.h │ │ ├── main.cc │ │ ├── material.h │ │ ├── perlin.h │ │ ├── quad.h │ │ ├── ray.h │ │ ├── rtw_stb_image.h │ │ ├── rtweekend.h │ │ ├── sphere.h │ │ ├── texture.h │ │ └── vec3.h │ ├── TheRestOfYourLife/ │ │ ├── aabb.h │ │ ├── bvh.h │ │ ├── camera.h │ │ ├── color.h │ │ ├── constant_medium.h │ │ ├── cos_cubed.cc │ │ ├── cos_density.cc │ │ ├── estimate_halfway.cc │ │ ├── hittable.h │ │ ├── hittable_list.h │ │ ├── integrate_x_sq.cc │ │ ├── interval.h │ │ ├── main.cc │ │ ├── material.h │ │ ├── onb.h │ │ ├── pdf.h │ │ ├── perlin.h │ │ ├── pi.cc │ │ ├── quad.h │ │ ├── ray.h │ │ ├── rtw_stb_image.h │ │ ├── rtweekend.h │ │ ├── sphere.h │ │ ├── sphere_importance.cc │ │ ├── sphere_plot.cc │ │ ├── texture.h │ │ └── vec3.h │ └── external/ │ ├── stb_image.h │ └── stb_image_write.h └── style/ ├── book-highlight-test.css ├── book.css └── website.css