diff options
| author | Ray <[email protected]> | 2018-03-15 12:27:40 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-03-15 12:27:40 +0100 |
| commit | 6c6d6776c0f3d359f0205e1bea45fb41be4e3c1c (patch) | |
| tree | b0deb8277eafece270246324f1494e996268bf7e /src/raylib.h | |
| parent | 4cae2b8829afb3286da3a5e3b514c4752a332726 (diff) | |
| parent | f52d2de582643719814987f7335668b611a4edbd (diff) | |
| download | raylib-6c6d6776c0f3d359f0205e1bea45fb41be4e3c1c.tar.gz raylib-6c6d6776c0f3d359f0205e1bea45fb41be4e3c1c.zip | |
Merge pull request #482 from a3f/master
raymath.h: Use C99 inline semantics
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/raylib.h b/src/raylib.h index a6a6be0c..909d37cc 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -743,13 +743,6 @@ RLAPI Vector3 ColorToHSV(Color color); // Returns HSV RLAPI Color GetColor(int hexValue); // Returns a Color struct from hexadecimal value RLAPI Color Fade(Color color, float alpha); // Color fade-in or fade-out, alpha goes from 0.0f to 1.0f -// Math useful functions (available from raymath.h) -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 -RLAPI Matrix MatrixIdentity(void); // Returns identity matrix - // Misc. functions RLAPI void ShowLogo(void); // Activate raylib logo at startup (can be done with flags) RLAPI void SetConfigFlags(unsigned char flags); // Setup window configuration flags (view FLAGS) |
