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

17 lines
347 B
C++

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