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?
|
2
|
|
|
|
|
|
In general, Please note that points that satisfy the above equation with |
|||
|
|
|
|
Calculate the Distance
that's in C#...convert for use in python... |
||
|
|
|
You can use Pythagoras to measure the distance between your point and the centre and see if it's lower than the 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:
Also, Jason noted that |
||||||||||
|
|
|
You should check whether the distance from the center of the circle to the point is smaller than the radius, i.e.
|
||
|
|
|
|
As said above -- use Euclidean distance.
|
||
|
|