1
0
forked from josh/j3ml
Files
j3ml-fork/include/J3ML/Geometry/Ray.h
2024-02-02 13:53:23 -05:00

17 lines
234 B
C++

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