mirror of
https://github.com/AxioDL/zeus.git
synced 2025-07-01 19:03:32 +00:00
14 lines
240 B
C++
14 lines
240 B
C++
#pragma once
|
|
|
|
#include "zeus/CVector3f.hpp"
|
|
|
|
namespace zeus {
|
|
class CLine {
|
|
public:
|
|
constexpr CLine(const CVector3f& origin, const CVector3f& dir) : origin(origin), dir(dir) {}
|
|
|
|
CVector3f origin;
|
|
CVector3f dir;
|
|
};
|
|
} // namespace zeus
|