zeus/include/zeus/CLine.hpp

14 lines
240 B
C++
Raw Normal View History

2018-10-06 20:39:40 -07:00
#pragma once
2017-03-30 15:35:40 -07:00
#include "zeus/CVector3f.hpp"
2018-12-07 17:16:50 -08:00
namespace zeus {
class CLine {
2017-03-30 15:35:40 -07:00
public:
2019-02-23 23:15:32 -08:00
constexpr CLine(const CVector3f& origin, const CVector3f& dir) : origin(origin), dir(dir) {}
2018-12-07 17:16:50 -08:00
CVector3f origin;
CVector3f dir;
2017-03-30 15:35:40 -07:00
};
2018-12-07 21:23:50 -08:00
} // namespace zeus