16 lines
194 B
C++
16 lines
194 B
C++
//
|
|
// Created by dawsh on 1/25/24.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <J3ML/LinearAlgebra/Vector3.h>
|
|
|
|
namespace Geometry
|
|
{
|
|
class Ray
|
|
{
|
|
Vector3 Origin;
|
|
Vector3 Direction;
|
|
};
|
|
} |