2020-02-25 00:44:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <glm/mat2x2.hpp>
|
|
|
|
|
#include <glm/mat3x3.hpp>
|
|
|
|
|
#include <glm/mat4x4.hpp>
|
2024-06-09 12:20:04 +02:00
|
|
|
namespace Seele {
|
2020-04-12 15:47:19 +02:00
|
|
|
typedef glm::mat2 Matrix2;
|
|
|
|
|
typedef glm::mat3 Matrix3;
|
|
|
|
|
typedef glm::mat4 Matrix4;
|
|
|
|
|
} // namespace Seele
|