当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.axes.Axes.draw()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。轴类包含大多数图形元素:Axis,Tick,Line2D,Text,Polygon等,并设置坐标系。 Axes实例通过callbacks属性支持回调。

matplotlib.axes.Axes.draw()函数

matplotlib库的axiss模块中的Axes.draw()函数用于绘制所有内容。

用法: Axes.draw(self, renderer=None, inframe=False)


参数:此方法接受以下参数。

  • renderer:此参数是第一个参数,其默认值为“无”。
  • inframe:此参数包含布尔值,其默认值为false。

返回值:此方法不返回任何值。

以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.draw()函数:

范例1:

# Implementation of matplotlib function  
from mpl_toolkits.mplot3d import axes3d  
import matplotlib.pyplot as plt  
    
  
fig, ax = plt.subplots()  
    
def tellme(s):  
    ax.set_title(s, fontsize = 16)  
    fig.canvas.draw() 
    renderer = fig.canvas.renderer 
    ax.draw(renderer) 
  
tellme('matplotlib.axes.Axes.draw() function Example')  
plt.show() 

输出:

范例2:

# Implementation of matplotlib function  
from mpl_toolkits.mplot3d import axes3d  
import matplotlib.pyplot as plt  
    
  
fig = plt.figure()  
ax = fig.add_subplot(111, projection ='3d')  
    
X, Y, Z = axes3d.get_test_data(0.1)  
ax.plot_wireframe(X, Y, Z, rstride = 5,   
                  cstride = 5)  
    
for angle in range(0, 90):  
    ax.view_init(30, angle) 
    fig.canvas.draw() 
    renderer = fig.canvas.renderer 
    ax.draw(renderer)  
    plt.pause(.001)  
    ax.set_title('matplotlib.axes.Axes.draw()\ 
    function Example', fontweight ="bold") 

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.axes.Axes.draw() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。