Matplotlib.artist.Artist.draw() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. La clase Artist contiene una clase base Abstract para objetos que se representan en un FigureCanvas. Todos los elementos visibles en una figura son subclases de Artista.

método matplotlib.artist.Artist.draw()

El método draw() en el módulo de artista de la biblioteca matplotlib se usa para dibujar al artista usando el renderizador dado.

Sintaxis: Artist.draw(self, renderer, \*args, \*\*kwargs)

Parámetros: este método acepta los siguientes parámetros.

  • renderer: este parámetro es la subclase RendererBase.

Devoluciones: este método no devuelve ningún valor.

Los siguientes ejemplos ilustran la función matplotlib.artist.Artist.draw() en matplotlib:

Ejemplo 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()

Producción:

Ejemplo 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()

Producción:

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *