Python求两个圆的交点坐标或三个圆的交点坐标方法
程序员文章站
2022-06-03 10:09:47
计算两个圆的交点
代码如下:
# -*- coding: utf-8 -*-
import math
import numpy as np
def ins...
计算两个圆的交点
代码如下:
# -*- coding: utf-8 -*- import math import numpy as np def insec(p1,r1,p2,r2): x = p1[0] y = p1[1] r = r1 a = p2[0] b = p2[1] s = r2 d = math.sqrt((abs(a-x))**2 + (abs(b-y))**2) if d > (r+s) or d < (abs(r-s)): print ("two circles have no intersection") return elif d == 0 and r==s : print ("two circles have same center!") return else: a = (r**2 - s**2 + d**2) / (2 * d) h = math.sqrt(r**2 - a**2) x2 = x + a * (a-x)/d y2 = y + a * (b-y)/d x3 = round(x2 - h * (b - y) / d,2) y3 = round(y2 + h * (a - x) / d,2) x4 = round(x2 + h * (b - y) / d,2) y4 = round(y2 - h * (a - x) / d,2) print (x3, y3) print (x4, y4) c1=np.array([x3, y3]) c2=np.array([x4, y4]) return c1,c2 p1=np.array([-5,0]) r1=10 p2=np.array([5,0]) r2=5 c=insec(p1,r1,p2,r2) c1=c[0] c2=c[1]
计算三个圆的交点,首先要保证三个圆必须有共同的交点,然后调用两次函数,再求交集,即可算出三个圆的交点。
以上这篇python求两个圆的交点坐标或三个圆的交点坐标方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 想起一个美国老笑话