Updated Vector math to new naming

This commit is contained in:
raysan5
2017-07-22 22:15:50 +02:00
parent 3655c6e466
commit a766e2c480
4 changed files with 47 additions and 47 deletions

View File

@@ -746,8 +746,8 @@ RLAPI float *ColorToFloat(Color color); // Converts Co
// Math useful functions (available from raymath.h)
RLAPI float *VectorToFloat(Vector3 vec); // Returns Vector3 as float array
RLAPI float *MatrixToFloat(Matrix mat); // Returns Matrix as float array
RLAPI Vector3 VectorZero(void); // Vector with components value 0.0f
RLAPI Vector3 VectorOne(void); // Vector with components value 1.0f
RLAPI Vector3 Vector3Zero(void); // Vector with components value 0.0f
RLAPI Vector3 Vector3One(void); // Vector with components value 1.0f
RLAPI Matrix MatrixIdentity(void); // Returns identity matrix
// Misc. functions