diff options
| author | flashjaysan <jaysan@wanadoo.fr> | 2019-04-13 14:35:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-13 14:35:07 +0200 |
| commit | 310d1d15890618f21c7e90d0c98b4f208c9c64ff (patch) | |
| tree | deb32b2a16f198006d260fce8436015e8d4991a5 /src | |
| parent | 93f68fa61205c2d06ce9006eec0569133cd515ba (diff) | |
| download | raylib-310d1d15890618f21c7e90d0c98b4f208c9c64ff.tar.gz raylib-310d1d15890618f21c7e90d0c98b4f208c9c64ff.zip | |
Update raymath.h
Removed a useless semicolon.
Diffstat (limited to 'src')
| -rw-r--r-- | src/raymath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raymath.h b/src/raymath.h index 33116532..389a430f 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -447,7 +447,7 @@ RMDEF Vector3 Vector3Transform(Vector3 v, Matrix mat) result.z = mat.m2*x + mat.m6*y + mat.m10*z + mat.m14; return result; -}; +} // Transform a vector by quaternion rotation RMDEF Vector3 Vector3RotateByQuaternion(Vector3 v, Quaternion q) |
