用python画圆的方法

这篇文章将为大家详细讲解有关用python画圆的方法,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

在Python中,可以利用matplotlb库的“Circle)”来画圆,将其封装到plot_circle函数中调用即可画圆。方法是:1、利用figure确定画布大小;2、利用“Circle)”配置圆的相关信息。

用python画圆的方法

代码如下:

from matplotlib.patches import Ellipse, Circle
import matplotlib.pyplot as plt

def plot_cicle):
    fig = plt.figure)
    ax = fig.add_subplot111)

    cir1 = Circlexy = 0.0, 0.0), radius=2, alpha=0.5)
    ax.add_patchcir1)

    x, y = 0, 0
    ax.plotx, y, 'ro')

    plt.axis'scaled')
    plt.axis'equal')   #changes limits of x or y axis so that equal increments of x and y have the same length

    plt.show)
 
plot_cicle)

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注