Check if a given point is inside of this circle
bool hasPoint(Point point) { return (center.distanceTo(point) <= radius); }