Fix typo in rshapes.c (#4772)

This commit is contained in:
vict-Yang 2025-02-16 22:43:32 +08:00 committed by GitHub
parent 2b59e7475f
commit b49c079b1d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2356,7 +2356,7 @@ bool CheckCollisionPointLine(Vector2 point, Vector2 p1, Vector2 p2, int threshol
return collision;
}
// Check if circle collides with a line created betweeen two points [p1] and [p2]
// Check if circle collides with a line created between two points [p1] and [p2]
RLAPI bool CheckCollisionCircleLine(Vector2 center, float radius, Vector2 p1, Vector2 p2)
{
float dx = p1.x - p2.x;