From f06a15ac8b3fe92d101ae795225fbf56fa670dba Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sat, 19 Apr 2014 16:36:49 +0200 Subject: raylib 1.1 View CHANGELOG for a detailed list of changes --- src/raymath.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/raymath.h') diff --git a/src/raymath.h b/src/raymath.h index 69a6a582..ec7aede3 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -115,6 +115,7 @@ Matrix MatrixRotateX(float angle); // Returns x-rotation ma Matrix MatrixRotateY(float angle); // Returns y-rotation matrix (angle in radians) Matrix MatrixRotateZ(float angle); // Returns z-rotation matrix (angle in radians) Matrix MatrixScale(float x, float y, float z); // Returns scaling matrix +Matrix MatrixTransform(Vector3 translation, Vector3 rotation, Vector3 scale); // Returns transformation matrix for a given translation, rotation and scale Matrix MatrixMultiply(Matrix left, Matrix right); // Returns two matrix multiplication Matrix MatrixFrustum(double left, double right, double bottom, double top, double near, double far); // Returns perspective projection matrix Matrix MatrixPerspective(double fovy, double aspect, double near, double far); // Returns perspective projection matrix -- cgit v1.2.3