1
0
forked from josh/j3ml
Files
j3ml-fork/include/J3ML/Geometry/Ray.h

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;
};
}