mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-06 06:13:10 +00:00
Remove duplicate function
This commit is contained in:
parent
d10ff78822
commit
fa0d5bbf9e
@ -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)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user