summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2017-07-22 22:15:50 +0200
committerraysan5 <[email protected]>2017-07-22 22:15:50 +0200
commita766e2c4808a554f5b6cfd07e6c4dceef711c9f8 (patch)
treeeefa520024b67a2b23ce18462641b4504d4b61c9 /src/raylib.h
parent3655c6e4663d62e93099cdf4871a03a4b0944c6a (diff)
downloadraylib-a766e2c4808a554f5b6cfd07e6c4dceef711c9f8.tar.gz
raylib-a766e2c4808a554f5b6cfd07e6c4dceef711c9f8.zip
Updated Vector math to new naming
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 72a8f763..bad711d9 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -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