Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Artist类包含用于呈现到FigureCanvas中的对象的Abstract基类。图中所有可见元素都是Artist的子类。
matplotlib.artist.Artist.draw()方法
matplotlib库的艺术家模块中的draw()方法用于使用给定的渲染器绘制艺术家。
用法:Artist.draw(self, renderer, \*args, \*\*kwargs)
参数:此方法接受以下参数。
- renderer:此参数是RendererBase子类。
返回值:此方法不返回任何值。
以下示例说明了matplotlib中的matplotlib.artist.Artist.draw()函数:
范例1:
# Implementation of matplotlib function
from matplotlib.artist import Artist
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
Artist.draw(ax, renderer)
tellme('matplotlib.artist.Artist.draw() function Example')
ax.grid()
plt.show()
输出:
范例2:
# Implementation of matplotlib function
from matplotlib.artist import Artist
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
Artist.draw(ax, renderer)
plt.pause(.001)
fig.suptitle('matplotlib.artist.Artist.draw() function Example')
ax.grid()
plt.show()
输出:
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.artist.Artist.draw() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。