zoukankan      html  css  js  c++  java
  • python 画园和椭圆

    from matplotlib.patches import Ellipse, Circle
    import matplotlib.pyplot as plt
    
    fig = plt.figure()
    ax = fig.add_subplot(111)
    
    ell1 = Ellipse(xy = (0.0, 0.0), width = 10, height = 5, angle = 0.0, facecolor= 'yellow', alpha=0.3)
    cir1 = Circle(xy = (0.0, 0.0), radius=2, alpha=0.5)
    ax.add_patch(ell1)
    ax.add_patch(cir1)
    
    x, y = 0, 0
    ax.plot(x, y, 'ro')
    
    plt.axis('scaled')
    ax.spines['right'].set_color('none')  # 设置右‘脊梁’为无色
    ax.spines['top'].set_color('none')  # 设置上‘脊梁’为无色
    ax.xaxis.set_ticks_position('bottom')  # 底部‘脊梁’设置为X轴
    ax.spines['bottom'].set_position(('data', 0))  # 底部‘脊梁’移动位置,y的data
    ax.yaxis.set_ticks_position('left')  # 左部‘脊梁’设置为Y轴
    ax.spines['left'].set_position(('data', 0))  # 左部‘脊梁’移动位置,x的data
    plt.savefig('d:/test2.png')
    
    #plt.axis('equal')   #changes limits of x or y axis so that equal increments of x and y have the same length
    
    plt.show()

    来自:https://www.cnblogs.com/yibeimingyue/p/9916048.html

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

    fig = plt.figure()
    ax = fig.add_subplot(111)

    ell1 = Ellipse(xy = (0.0, 0.0), width = 10, height = 5, angle = 0.0, facecolor= 'yellow', alpha=0.3)
    cir1 = Circle(xy = (0.0, 0.0), radius=2, alpha=0.5)
    ax.add_patch(ell1)
    ax.add_patch(cir1)

    x, y = 0, 0
    ax.plot(x, y, 'ro')

    plt.axis('scaled')
    ax.spines['right'].set_color('none') # 设置右脊梁为无色
    ax.spines['top'].set_color('none') # 设置上脊梁为无色
    ax.xaxis.set_ticks_position('bottom') # 底部脊梁设置为X
    ax.spines['bottom'].set_position(('data', 0)) # 底部脊梁移动位置,ydata
    ax.yaxis.set_ticks_position('left') # 左部脊梁设置为Y
    ax.spines['left'].set_position(('data', 0)) # 左部脊梁移动位置,xdata
    plt.savefig('d:/test2.png')

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

    plt.show()
  • 相关阅读:
    使用C#调用C++类库
    C# IntPtr类型
    C# 调用C++ dll string类型返回
    C# try、catch、finally语句
    C语言 char *、char []、const char *、string的区别与相互转换
    C# 字符串string与char数组互转!
    C#如何调用C++(进阶篇)
    Springboot通过过滤器实现对请求头的修改
    【spring事务】
    命令行参数库:McMaster.Extensions.CommandLineUtils【转】
  • 原文地址:https://www.cnblogs.com/gisoracle/p/12024936.html
Copyright © 2011-2022 走看看