clarify function parameters

This commit is contained in:
2023-10-18 00:17:55 +02:00
parent eb277ec346
commit f8c2e8e598

View File

@@ -340,7 +340,7 @@ Mat4<T> Transpose(const Mat4<T>& 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);