Watch
2
0
Fork
You've already forked raylib-cs
0

Review README files and comment style

This commit is contained in:
Rgebee 2026-07-31 08:24:07 +01:00
commit 5e2b5aef34
5 changed files with 35 additions and 35 deletions

View file

@ -46,7 +46,7 @@ public partial class EllipseCollision : IExample
}
// Check if two ellipses collide
// Uses radial boundary distance in the direction between centers scales correctly with radii
// Uses radial boundary distance in the direction between centers - scales correctly with radii
private static bool CheckCollisionEllipses(Vector2 c1, float rx1, float ry1, Vector2 c2, float rx2, float ry2)
{
float dx = c2.X - c1.X;