Initial commit

This commit is contained in:
CJSatnarine
2024-07-03 15:09:13 -04:00
commit cf96db673c
116 changed files with 824574 additions and 0 deletions

17
CMakeLists.txt Normal file
View File

@@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.5.0)
project(Raytracer VERSION 0.1.0 LANGUAGES C CXX)
add_executable(Raytracer
ImageGenerator.cpp
camera.h
colour.h
hittable.h
hittableList.h
interval.h
material.h
ray.h
rayTracer.h
sphere.h
vec3.h
)