I\'m trying to check if a circle is contained within another circle. I\'m not sure if the math behind it is the problem or if its my if statement because I keep getting
You have distance_2 = distance + circle.get_radius(), so distance_2 will always be higher than distance and distance_2 > distance will always be true.
distance_2 = distance + circle.get_radius()
distance_2
distance
distance_2 > distance