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?
|
feedback
|
|
In general, Please note that points that satisfy the above equation with | ||||
|
feedback
|
|
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 | |||||||||||||
feedback
|
|
You should check whether the distance from the center of the circle to the point is smaller than the radius, i.e.
| |||
|
feedback
|
|
Calculate the Distance
that's in C#...convert for use in python... | |||||
feedback
|
This is more efficient, as it avoids the costly square root operation. | ||||
|
feedback
|
|
Mathematically, Pythagoras is probably a simple method as many have already mentioned.
Computationally, there are quicker ways:
Now imagine a square diamond drawn inside this circle such that it's vertices touch this circle:
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.
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):
| |||
|
feedback
|
|
As said above -- use Euclidean distance.
| |||
|
feedback
|