欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > python >内容正文

python

python两个同切圆_求两个圆的交点

发布时间:2023/12/10 python 38 豆豆
生活随笔 收集整理的这篇文章主要介绍了 python两个同切圆_求两个圆的交点 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

我试图在Python中找到两个圆之间的交集(使用Matplotlib),但是找不到任何值。在

为此,我为每个单独的圆创建X和Y的列表(Matplotlib在绘制圆时将第一个参数作为X值,第二个参数作为Y值),然后相应地使列表相交(例如,circle1x值与circle2x值)。在import numpy

import math

import matplotlib.pyplot as plt

import random

def origin_circle():

global x_points

global y_points

global r

global n

r=1

n=2**16

x_points=[(r*math.cos(t)) for t in numpy.linspace(0, 2*numpy.pi*r, n+1)]

y_points=[(r*math.sin(t)) for t in numpy.linspace(0, 2*numpy.pi*r, n+1)]

def new_circle(x_offset, y_offset):

global x_points1

global y_points1

x_points1=[x_offset+(r*math.cos(t)) for t in numpy.linspace(0, 2*numpy.pi*r, n+1)]

y_points1=[y_offset+(r*math.sin(t)) for t in numpy.linspace(0, 2*numpy.pi*r, n+1)]

origin_circle()

new_center= random.randint(0, len(x_points))

x_offset = x_points[new_center]

y_offset = y_points[new_center]

new_circle(x_offset, y_offset)

print(set(x_points1).intersection(set(x_points)))

print(set(y_points1).intersection(set(y_points)))

我希望返回值,但返回的集合为空。在

总结

以上是生活随笔为你收集整理的python两个同切圆_求两个圆的交点的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。