Talk:Circles of given radius through two points: Difference between revisions

Content added Content deleted
m (→‎More special cases: fixed a typo.)
 
Line 1: Line 1:
==More special cases==
==More special cases==
There may be more special cases. If p1==p2 and r==0, there is one unique answere that's a zero radius circle. If tow points are separated by exactly double the radius, there's only one answer. The latter can be treated as two identical circles, but then so can the former.
There may be more special cases. If p1==p2 and r==0, there is one unique answere that's a zero radius circle. If two points are separated by exactly double the radius, there's only one answer. The latter can be treated as two identical circles, but then so can the former.
<lang python>from math import sqrt
<lang python>from math import sqrt