├── Entity.cpp ├── Entity.h ├── PhongShader.cpp ├── PhongShader.h ├── README.md ├── Ray.cpp ├── Ray.h ├── RayTracing.cpp ├── RayTracing.h ├── Shader ├── Fragment ├── Shader.cpp ├── Shader.h └── Vertex └── main.cpp /Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/Entity.cpp -------------------------------------------------------------------------------- /Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/Entity.h -------------------------------------------------------------------------------- /PhongShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/PhongShader.cpp -------------------------------------------------------------------------------- /PhongShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/PhongShader.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/README.md -------------------------------------------------------------------------------- /Ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/Ray.cpp -------------------------------------------------------------------------------- /Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/Ray.h -------------------------------------------------------------------------------- /RayTracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/RayTracing.cpp -------------------------------------------------------------------------------- /RayTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/RayTracing.h -------------------------------------------------------------------------------- /Shader/Fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/Shader/Fragment -------------------------------------------------------------------------------- /Shader/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/Shader/Shader.cpp -------------------------------------------------------------------------------- /Shader/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/Shader/Shader.h -------------------------------------------------------------------------------- /Shader/Vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/Shader/Vertex -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SingleZombie/Ray-Tracing-OpenGL/HEAD/main.cpp --------------------------------------------------------------------------------