aboutsummaryrefslogtreecommitdiff
path: root/src/ray.hpp
blob: 6341d44fa046e73b53fe3296ec7fb8003438a2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef RAY_H
#define RAY_H

#include "vector.hpp"

class Ray {
    public:
        Ray(Vec3d start, Vec3d direction, bool normalize);
        Ray(Vec3d a, Vec3d b);

        Vec3d m_start;
        Vec3d m_direction;
};

#endif