Remove trailing spaces

This commit is contained in:
Ray 2021-10-06 01:20:46 +02:00
parent 9a4fb25285
commit 8d7f97ee04
6 changed files with 9 additions and 9 deletions

View file

@ -541,7 +541,7 @@ RMAPI float Vector3Distance(Vector3 v1, Vector3 v2)
RMAPI Vector2 Vector3Angle(Vector3 v1, Vector3 v2)
{
Vector2 result = { 0 };
float dx = v2.x - v1.x;
float dy = v2.y - v1.y;
float dz = v2.z - v1.z;