1
0
forked from josh/j3ml
Files
j3ml-fork/include/J3ML/LinearAlgebra/CoordinateFrame.h
2024-01-30 13:13:09 -05:00

16 lines
329 B
C++

#pragma once
#include <J3ML/LinearAlgebra.h>
#include <J3ML/LinearAlgebra/Vector3.h>
namespace LinearAlgebra
{
/// The CFrame is fundamentally 4 vectors (position, forward, right, up vector)
class CoordinateFrame
{
Vector3 Position;
Vector3 Front;
Vector3 Right;
Vector3 Up;
};
}