up vote 3 down vote favorite
3
share [g+] share [fb]

i'm looking for a fast way to determine the area of intersection between a rectangle and a circle (I need to do millions of these calculations)

A specific property is that in all cases the circle and rectangle always have 2 points of intersection.

Java lib would be awesome!

Thanks, Britske

link|improve this question
Do they have only 2 points of intersection? Or do they have at least 2 points of intersection? – bigmonachus Mar 7 '09 at 19:22
Do you need to calculate the area in square units, or return a set of line segments that define the area? – Leonard Mar 7 '09 at 19:38
If one is inside the other, or if the two don't overlap at all, there are no points of intersection. If the circle is tangent to any of the sides of the rectangle, there's only one point of intersection. – duffymo Mar 7 '09 at 21:41
feedback

5 Answers

up vote 20 down vote accepted

Given 2 points of intersection:

0 vertices is inside the circle: The area of a circular segment

    XXXXX              -------------------
   X     X               X            X Circular segment
  X       X               XX        XX 
+-X-------X--+              XXXXXXXX 
|  X     X   |
|   XXXXX    |

1 vertex is inside the circle: The sum of the areas of a circular segment and a triangle.

    XXXXX                   XXXXXXXXX
   X     X       Triangle ->X     _-X
  X       X                 X   _-  X 
  X    +--X--+              X _-   X <- Circular segment 
   X   | X   |              X-  XXX 
    XXXXX    |              XXXX
       |     |

2 vertices are inside the circle: The sum of the area of two triangles and a circular segment

    XXXXX                   +------------X
   X     X                  |      _--'/'X 
  X    +--X---    Triangle->|   _--   / X
  X    |  X                 |_--     /XX <- Circular segment
   X   +-X----              +-------XX
    XXXXX                 Triangle^

3 vertices are inside the circle: The area of the rectangle minus the area of a triangle plus the area of a circular segment

    XXXXX
   X  +--X+             XXX
  X   |   X         -------XXX-----+ <- Triangle outside
 X    |   |X        Rect ''.  XXX  |
 X    +---+X                ''.  XX|  
 X         X                   ''. X <- Circular segment inside 
  X       X                       ^|X 
   X     X                         | X 
    XXXXX

To calculate these areas:

link|improve this answer
2  
+1 for ascii effort – Andrew Bullock Mar 7 '09 at 19:37
Ditto - impressive! – ajm Mar 9 '09 at 17:36
feedback

The following is how to calculate the overlapping area between circle and rectangle where the center of circle lies outside the rectangle. Other cases can be reduced to this problem.

The area can be calculate by integrating the circle equation y = sqrt[a^2 - (x-h)^2] + k where a is radius, (h,k) is circle center, to find the area under curve. You may use computer integration where the area is divided into many small rectangle and calculating the sum of them, or just use closed form here.

alt text

And here is a C# source implementing the concept above. Note that there is a special case where the specified x lies outside the boundaries of the circle. I just use a simple workaround here (which is not producing the correct answers in all cases)

public static void RunSnippet()
{
	// test code
	double a,h,k,x1,x2;
	a = 10;
	h = 4;
	k = 0;
	x1 = -100;
	x2 = 100;

	double r1 = Integrate(x1, a, h, k);
	double r2 = Integrate(x2, a, h, k);

	Console.WriteLine(r2 - r1);

}

private static double Integrate(double x, double a,double h, double k)
{
	double a0 = a*a - (h-x)*(h-x);

	if(a0 <= 0.0){
		if(k == 0.0)
			return Math.PI * a * a / 4.0 * Math.Sign(x);
		else
			throw new Exception("outside boundaries");
	}

	double a1 = Math.Sqrt(a*a - (h-x)*(h-x)) * (h-x);
	double area = 0.5 * Math.Atan(a1 / ((h-x)*(h-x) - a*a))*a*a - 0.5 * a1 + k * x;
	return area;
}

Note: This problem is very similar to one in Google Code Jam 2008 Qualification round problem: Fly Swatter. You can click on the score links to download the source code of the solution too.

link|improve this answer
feedback

Thanks for the answers,

I forgot to mention that area estimatations were enough. That; s why in the end, after looking at all the options, I went with monte-carlo estimation where I generate random points in the circle and test if they're in the box.

In my case this is likely more performant. (I have a grid placed over the circle and I have to measure the ratio of the circle belonging to each of the grid-cells. )

Thanks

link|improve this answer
Ah, estimations being okay makes a big difference :] – Daniel LeCheminant Mar 8 '09 at 19:18
feedback

Perhaps you can use the answer to this question, where the area of intersection between a circle and a triangle is asked. Split your rectangle into two triangles and use the algorithms described there.

Another way is to draw a line between the two intersection points, this splits your area into a polygon (3 or 4 edges) and a circular segment, for both you should be able to find libraries easier or do the calculations yourself.

link|improve this answer
feedback

Here is another solution for the problem:

public static bool IsIntersected(PointF circle, float radius, RectangleF rectangle) {

        var rectangleCenter = new PointF((rectangle.X +  rectangle.Width / 2),
                                         (rectangle.Y + rectangle.Height / 2));

        var w = rectangle.Width  / 2;
        var h = rectangle.Height / 2;

        var dx = Math.Abs(circle.X - rectangleCenter.X);
        var dy = Math.Abs(circle.Y - rectangleCenter.Y);

        if (dx > (radius + w) || dy > (radius + h)) return false;


        var circleDistance = new PointF
                                 {
                                     X = Math.Abs(circle.X - rectangle.X - w),
                                     Y = Math.Abs(circle.Y - rectangle.Y - h)
                                 };


        if (circleDistance.X <= (w))
        {
            return true;
        }

        if (circleDistance.Y <= (h))
        {
            return true;
        }

        var cornerDistanceSq = Math.Pow(circleDistance.X - w, 2) + 
                    Math.Pow(circleDistance.Y - h, 2);

        return (cornerDistanceSq <= (Math.Pow(radius, 2)));
    }

Bassam Alugili

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.