diff options
| author | Ray <[email protected]> | 2019-02-22 12:12:21 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-02-22 12:12:21 +0100 |
| commit | a886f5e743cd50744d7800cd70a47f5cb9f663e3 (patch) | |
| tree | b045b074e038b75d275bded59a7f382f57ddcff4 /src/shapes.c | |
| parent | 641895b5ba778fdc9024ebb58446dcc8ea36a00a (diff) | |
| download | raylib-a886f5e743cd50744d7800cd70a47f5cb9f663e3.tar.gz raylib-a886f5e743cd50744d7800cd70a47f5cb9f663e3.zip | |
Remove TABS
Diffstat (limited to 'src/shapes.c')
| -rw-r--r-- | src/shapes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shapes.c b/src/shapes.c index 87bb573c..dbc38082 100644 --- a/src/shapes.c +++ b/src/shapes.c @@ -644,7 +644,7 @@ bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec) if (dy <= (rec.height/2.0f)) { return true; } float cornerDistanceSq = (dx - rec.width/2.0f)*(dx - rec.width/2.0f) + - (dy - rec.height/2.0f)*(dy - rec.height/2.0f); + (dy - rec.height/2.0f)*(dy - rec.height/2.0f); return (cornerDistanceSq <= (radius*radius)); } |
