Determining whether grid coordinates lie within a circle

AI Thread Summary
To determine if a grid cell lies within a circle, the distance from the cell's coordinates to the circle's center must be compared to the circle's radius. The discussion highlights the challenge of calculating this distance without using a square root, as it can be computationally expensive. It suggests leveraging the monotonic nature of the square root function to simplify the calculation. The conversation also touches on the ambiguity of defining "within" a circle, especially regarding grid cells that may partially intersect the circle's boundary. Overall, the focus is on finding an efficient method to assess the relationship between grid coordinates and a defined circular area.
STENDEC
Messages
21
Reaction score
0
I have a grid and want to determine whether a point lies within (our outside of) a circle.

asXctUw.png


The grid cells simply have integer coordinates, e.g. x = 5, y = 7. The circle's radius is known, and also an integer value.

I wrote a program that can place points in a (quantized) circle using sin/cos, but I can't seem to wrap my head around how to check whether a grid cell lies within a circle of a given radius. Maybe someone can guide me into the right direction. Thanks.
 
Mathematics news on Phys.org
What is your definition of "within"? Surely that blue square in your picture has a part outside the circle.
 
If you think of the border being derived from the sin/cos values describing the circle, rounded to the nearest integer; A blocky ring if you will.

It doesn't have to be accurate to the single cell if there's some ambiguity about that. X and Y coordinates and 2 states per cell (on/off) is all that's being processed.
 
Do you know the x and y coordinates of the center of the circle, the x and y coordinates of your point and the radius of the circle? If so, compute the distance from the point to the center of the circle and compare that to the radius.

Naively, that computation requires evaluating a square root. Can you think of a way to avoid that?

Hint: The square root function is strictly monotone increasing.
 
That's the help I needed. I'll think about your hint on whether/how sqrt can be avoided in this scenario. I'm not solid in math as is evident I think :shy:
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Back
Top