up vote 26 down vote favorite
12
share [g+] share [fb]

In python, if you create a circle with: newcircle = circle(center_x, center_y, radius)

How do you test if a given set of x/y coordinates are inside the circle?

link|improve this question
feedback

8 Answers

In general, x and y must satisfy (x-center_x)^2 + (y - center_y)^2 < radius^2.

Please note that points that satisfy the above equation with < replaced by == are considered the points on the circle, and the points that satisfy the above equation with < replaced by > are consider the exterior of the circle.

link|improve this answer
feedback

You can use Pythagoras to measure the distance between your point and the centre and see if it's lower than the radius:

def in_circle(center_x, center_y, radius, x, y):
    dist = math.sqrt((center_x - x) ** 2 + (center_y - y) ** 2)
    return dist <= radius

EDIT (hat tip to Paul)

In practice, squaring is often much cheaper than taking the square root and since we're only interested in an ordering, we can of course forego taking the square root:

def in_circle(center_x, center_y, radius, x, y):
    square_dist = (center_x - x) ** 2 + (center_y - y) ** 2
    return square_dist <= radius ** 2

Also, Jason noted that <= should be replaced by < and depending on usage this may actually make sense even though I believe that it's not true in the strict mathematical sense. I stand corrected.

link|improve this answer
Replace dist <= radius by dist < radius to test for the point being inside the circle. – Jason Jan 26 '09 at 20:17
3  
sqrt is expensive. Avoid it if possible - compare the x^2+y^y to r^2. – Paul Tomblin Jan 26 '09 at 20:20
Jason: our definitions may disagree but for me, a point that is on the circle's circumference is most emphatically also in the circle and I am pretty sure that mine is in agreement with the formal, mathematical definition. – Konrad Rudolph Jan 26 '09 at 20:20
@Paul: That's correct in practice but I wanted to illustrate Pythagoras. Other answers have included this optimization. – Konrad Rudolph Jan 26 '09 at 20:22
The formal mathematical definition of the interior of a circle is that which I gave in my post. From Wikipedia: In general, the interior of something refers to the space or part inside of it, excluding any kind of wall or boundary around its outside. en.wikipedia.org/wiki/Interior_(topology) – Jason Jan 26 '09 at 20:29
show 1 more comment
feedback

You should check whether the distance from the center of the circle to the point is smaller than the radius, i.e.

if (x-center_x)**2 + (y-center_y)**2 <= radius**2:
    # inside circle
link|improve this answer
feedback

Calculate the Distance

D = Math.Sqrt(Math.Pow(center_x - x, 2) + Math.Pow(center_y - y, 2))
return D <= radius

that's in C#...convert for use in python...

link|improve this answer
5  
You can avoid two expensive Sqrt calls by comparing D-squared to radius-squared. – Paul Tomblin Jan 26 '09 at 20:18
feedback
D = Math.Pow(center_x - x, 2) + Math.Pow(center_y - y, 2);
return D <= radius*radius

This is more efficient, as it avoids the costly square root operation.

link|improve this answer
feedback

Mathematically, Pythagoras is probably a simple method as many have already mentioned.

(x-center_x)^2 + (y - center_y)^2 < radius^2

Computationally, there are quicker ways:

dx = abs(x-center_x)
dy = abs(y-center_y)
R = radius
  1. If a point is more likely to be outside this circle then imagine a square drawn around it such that it's sides are tangents to this circle:

    if dx>R then return false. if dy>R then return false.

Now imagine a square diamond drawn inside this circle such that it's vertices touch this circle:

if dx + dy <= R then return true.

Now we have covered most of our space and only a small area of this circle remains in between our square and diamond to be tested. Here we revert to Pythagoras as above.

if dx^2 + dy^2 <= R^2 then return true
else return false.
  1. If a point is more likely to be outside this circle then reverse order of first 3 steps:

    if dx + dy <= R then return true. if dx > R then return false. if dy > R then return false. if dx^2 + dy^2 <= R^2 then return true else return false.

Alternate methods imagine a square inside this circle instead of a diamond but this requires slightly more tests and calculations with no computational advantage (inner square and diamonds have identical areas):

k = R/sqrt(2)
if dx <= k and dy <= k then return true.
link|improve this answer
Sorry about my formatting - I can't seem to get it to look right. – philcolbourn Aug 29 '11 at 7:01
feedback

As said above -- use Euclidean distance.

from math import hypot

def in_radius(c_x, c_y, r, x, y):
    return math.hypot(c_x-x, c_y-y) <= r
link|improve this answer
feedback

Show two squares creating 8 points within a circle

link|improve this answer
feedback

Your Answer

 
or
required, but never shown