We have a point (x,y) and a set of some other points (xi,yi). How can we determine which of (xi,yi) are within a circle with c
If (xi - x)^2 + (yi - y)^2 is less than d^2, it's inside. If it equals d^2, it's on the circle. If it's greater than d^2, it's outside.