summaryrefslogtreecommitdiffhomepage
path: root/src/shapes.c
diff options
context:
space:
mode:
authorRay <[email protected]>2019-02-21 18:45:19 +0100
committerRay <[email protected]>2019-02-21 18:45:19 +0100
commit641895b5ba778fdc9024ebb58446dcc8ea36a00a (patch)
tree7d1fbcca0ae631f318d9c6f6fff6107ffde3ed63 /src/shapes.c
parent75298b50fbfe8a8fad9c52c3cd8882072fb1ed36 (diff)
downloadraylib-641895b5ba778fdc9024ebb58446dcc8ea36a00a.tar.gz
raylib-641895b5ba778fdc9024ebb58446dcc8ea36a00a.zip
Remove end-line spaces
Diffstat (limited to 'src/shapes.c')
-rw-r--r--src/shapes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shapes.c b/src/shapes.c
index 8976c81c..87bb573c 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -143,7 +143,7 @@ void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color)
rlTexCoord2f(recTexShapes.x/texShapes.width, (recTexShapes.y + recTexShapes.height)/texShapes.height);
rlVertex2f(0.0f, thick);
-
+
rlTexCoord2f((recTexShapes.x + recTexShapes.width)/texShapes.width, (recTexShapes.y + recTexShapes.height)/texShapes.height);
rlVertex2f(d, thick);
@@ -187,7 +187,7 @@ void DrawCircle(int centerX, int centerY, float radius, Color color)
void DrawCircleSector(Vector2 center, float radius, int startAngle, int endAngle, Color color)
{
#define CIRCLE_SECTOR_LENGTH 10
-
+
#if defined(SUPPORT_QUADS_DRAW_MODE)
if (rlCheckBufferLimit(4*((360/CIRCLE_SECTOR_LENGTH)/2))) rlglDraw();
@@ -307,10 +307,10 @@ void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color color
rlTexCoord2f(recTexShapes.x/texShapes.width, recTexShapes.y/texShapes.height);
rlVertex2f(0.0f, 0.0f);
-
+
rlTexCoord2f(recTexShapes.x/texShapes.width, (recTexShapes.y + recTexShapes.height)/texShapes.height);
rlVertex2f(0.0f, rec.height);
-
+
rlTexCoord2f((recTexShapes.x + recTexShapes.width)/texShapes.width, (recTexShapes.y + recTexShapes.height)/texShapes.height);
rlVertex2f(rec.width, rec.height);