1
0
forked from josh/j3ml
Files
j3ml-fork/include/J3ML/Geometry/Ray.h
2024-01-30 21:35:55 -05:00

17 lines
228 B
C++

//
// Created by dawsh on 1/25/24.
//
#pragma once
#include <J3ML/LinearAlgebra/Vector3.h>
namespace Geometry
{
using LinearAlgebra::Vector3;
class Ray
{
Vector3 Origin;
Vector3 Direction;
};
}