Ray Tracer  2020
Ray.h
Go to the documentation of this file.
1 #pragma once
2 
3 #ifndef RAY_H_INCLUDED
4 #define RAY_H_INCLUDED
5 
6 #include "Point.h"
7 #include "Direction.h"
8 
20 class Ray {
21 public:
24 };
25 
26 #endif
Direction class header file.
Point class header file.
Class for Direction Vectors.
Definition: Direction.h:22
Class for Point Vectors.
Definition: Point.h:22
Rays as a starting Point and Direction.
Definition: Ray.h:20
Point point
The starting Point for the Ray.
Definition: Ray.h:22
Direction direction
The Direction for the Ray.
Definition: Ray.h:23