summaryrefslogtreecommitdiffhomepage
path: root/src/shapes.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-06-13 17:08:30 +0200
committerRay <[email protected]>2021-06-13 17:08:30 +0200
commit4b93feb172addaf266f2cccb2e08c170cf5b9767 (patch)
tree3986fe085b1546a2bc364dbeddb38832b49d44e9 /src/shapes.c
parentd875891a3c2621ab40733ca3569eca9e054a6506 (diff)
downloadraylib-4b93feb172addaf266f2cccb2e08c170cf5b9767.tar.gz
raylib-4b93feb172addaf266f2cccb2e08c170cf5b9767.zip
Remove trail spaces
Diffstat (limited to 'src/shapes.c')
-rw-r--r--src/shapes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shapes.c b/src/shapes.c
index 5acd9810..788c3c83 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -130,9 +130,9 @@ void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color)
float scale = thick/(2*length);
Vector2 radius = { -scale*delta.y, scale*delta.x };
Vector2 strip[4] = {
- { startPos.x - radius.x, startPos.y - radius.y },
+ { startPos.x - radius.x, startPos.y - radius.y },
{ startPos.x + radius.x, startPos.y + radius.y },
- { endPos.x - radius.x, endPos.y - radius.y },
+ { endPos.x - radius.x, endPos.y - radius.y },
{ endPos.x + radius.x, endPos.y + radius.y }
};