24 lines
815 B
C++
24 lines
815 B
C++
//// Dawsh Linear Algebra Library - Everything you need for 3D math
|
|
/// @file LinearAlgebra.hpp
|
|
/// @description Includes all LinearAlgebra classes and functions
|
|
/// @author Josh O'Leary, William Tomasine II
|
|
/// @copyright 2024 Redacted Software
|
|
/// @license Unlicense - Public Domain
|
|
/// @revision 1.3
|
|
/// @edited 2024-02-26
|
|
|
|
#pragma once
|
|
|
|
#include "J3ML/LinearAlgebra/Vector2.hpp"
|
|
#include "J3ML/LinearAlgebra/Vector3.hpp"
|
|
#include "J3ML/LinearAlgebra/Vector4.hpp"
|
|
#include "J3ML/LinearAlgebra/Quaternion.hpp"
|
|
#include "J3ML/LinearAlgebra/AxisAngle.hpp"
|
|
#include "J3ML/LinearAlgebra/Matrix2x2.hpp"
|
|
#include "J3ML/LinearAlgebra/Matrix3x3.hpp"
|
|
#include "J3ML/LinearAlgebra/Matrix4x4.hpp"
|
|
#include "J3ML/LinearAlgebra/Transform2D.hpp"
|
|
#include "J3ML/LinearAlgebra/Vector2i.hpp"
|
|
|
|
using namespace J3ML::LinearAlgebra;
|