diff options
| author | Ray <[email protected]> | 2017-11-04 16:57:20 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2017-11-04 16:57:20 +0100 |
| commit | 9e0105a1a3c3107206c2940706470d66cf466447 (patch) | |
| tree | e605b74571a07003a47fff67a8f326031ff98354 /src | |
| parent | c570f7ca63e23da18a54a10c0c708c7575e1399b (diff) | |
| download | raylib-9e0105a1a3c3107206c2940706470d66cf466447.tar.gz raylib-9e0105a1a3c3107206c2940706470d66cf466447.zip | |
Corrected function name
Diffstat (limited to 'src')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 3decb464..aa15183c 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -764,7 +764,7 @@ RLAPI Color Fade(Color color, float alpha); // Color fade- RLAPI float *ColorToFloat(Color color); // Converts Color to float array and normalizes // Math useful functions (available from raymath.h) -RLAPI float *VectorToFloat(Vector3 vec); // Returns Vector3 as float array +RLAPI float *Vector3ToFloat(Vector3 vec); // Returns Vector3 as float array RLAPI float *MatrixToFloat(Matrix mat); // Returns Matrix as float array RLAPI Vector3 Vector3Zero(void); // Vector with components value 0.0f RLAPI Vector3 Vector3One(void); // Vector with components value 1.0f |
