Implement texture

This commit is contained in:
CJSatnarine
2024-07-08 19:02:29 -04:00
parent e1e2d4ac2a
commit 18b2acb1fe
22 changed files with 360386 additions and 90076 deletions

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5.0)
project(Raytracer VERSION 0.1.0 LANGUAGES C CXX)
add_executable(Raytracer
ImageGenerator.cpp
main.cpp
aabb.h
bvh.h
camera.h
@@ -14,6 +14,7 @@ add_executable(Raytracer
ray.h
rayTracer.h
sphere.h
texture.h
vec3.h
)