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