Example #1
0
        /// <summary>
        /// Detection a collision between a circle and a rectangle
        /// </summary>
        /// <param name="c"></param>
        /// <param name="r"></param>
        /// <returns>true for collision, false otherwise</returns>
        public static bool Collides(BoundingCircle c, BoundingRectangle r)
        {
            float nearestX = MathHelper.Clamp(c.Center.X, r.Left, r.Right);
            float nearestY = MathHelper.Clamp(c.Center.Y, r.Top, r.Bottom);

            return(Math.Pow(c.Radius, 2) >=
                   Math.Pow(c.Center.X - nearestX, 2) +
                   Math.Pow(c.Center.Y - nearestY, 2));
        }
Example #2
0
 public bool CollidesWith(BoundingCircle other)
 {
     return(CollisionHelper.Collides(other, this));
 }
Example #3
0
 public static bool Collides(BoundingRectangle r, BoundingCircle c) => Collides(c, r);
Example #4
0
 /// <summary>
 /// Detects a collision between two BoundingCircles
 /// </summary>
 /// <param name="a"></param>
 /// <param name="b"></param>
 /// <returns>true for collision, false otherwise</returns>
 public static bool Collides(BoundingCircle a, BoundingCircle b)
 {
     return(Math.Pow(a.Radius + b.Radius, 2) >=
            Math.Pow(a.Center.X - b.Center.X, 2) +
            Math.Pow(a.Center.Y - b.Center.Y, 2));
 }