summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2020-01-23 21:12:50 +0100
committerRay <[email protected]>2020-01-23 21:12:50 +0100
commitfa0d5bbf9e6b37f5436a4f540571ad3347d531ae (patch)
treeb1f0e2a45347abe1d53a2e16783866b55c998343 /src
parentd10ff78822f8a726c6c8e45f43bfd90a9d1cd8bf (diff)
downloadraylib-fa0d5bbf9e6b37f5436a4f540571ad3347d531ae.tar.gz
raylib-fa0d5bbf9e6b37f5436a4f540571ad3347d531ae.zip
Remove duplicate function
Diffstat (limited to 'src')
-rw-r--r--src/raymath.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/raymath.h b/src/raymath.h
index c13ef234..bc9a05ad 100644
--- a/src/raymath.h
+++ b/src/raymath.h
@@ -371,13 +371,6 @@ RMDEF float Vector3Distance(Vector3 v1, Vector3 v2)
return result;
}
-// Scale provided vector
-RMDEF Vector3 Vector3Scale(Vector3 v, float scale)
-{
- Vector3 result = { v.x*scale, v.y*scale, v.z*scale };
- return result;
-}
-
// Negate provided vector (invert direction)
RMDEF Vector3 Vector3Negate(Vector3 v)
{