Implement Geometric Class Definitions

This commit is contained in:
2024-01-25 19:09:48 -05:00
parent 56077b7c86
commit 4152b0d2aa
13 changed files with 87 additions and 85 deletions

View File

@@ -2,7 +2,15 @@
// Created by dawsh on 1/25/24.
//
#ifndef J3ML_RAY_H
#define J3ML_RAY_H
#pragma once
#endif //J3ML_RAY_H
#include <J3ML/LinearAlgebra/Vector3.h>
namespace Geometry
{
class Ray
{
Vector3 Origin;
Vector3 Direction;
};
}