From f8c2e8e59803be64375ca5d872b426c00b7259e8 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Wed, 18 Oct 2023 00:17:55 +0200 Subject: [PATCH] clarify function parameters --- include/blitz/misc/Maths.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blitz/misc/Maths.h b/include/blitz/misc/Maths.h index 9a51681..2b7ebde 100644 --- a/include/blitz/misc/Maths.h +++ b/include/blitz/misc/Maths.h @@ -340,7 +340,7 @@ Mat4 Transpose(const Mat4& mat) { } Mat4f Perspective(float fovY, float aspectRatio, float zNear, float zFar); -Mat4f Look(const Vec3f& eye, const Vec3f& center, const Vec3f& up); +Mat4f Look(const Vec3f& eyePos, const Vec3f& front, const Vec3f& up); Mat4f Inverse(const Mat4f& mat);