fixed matrix

This commit is contained in:
2021-09-26 20:48:34 +08:00
parent 34b70f1b42
commit 089d499201
3 changed files with 31 additions and 44 deletions

View File

@@ -13,11 +13,6 @@ namespace hgl
using Matrix3f=glm::mat3;
using Matrix4f=glm::mat4;
inline Matrix4f identity()
{
return Matrix4f();
}
inline Matrix4f inverse(const Matrix4f &m)
{
return glm::inverse(m);