Clase de artista de Matplotlib en un FigureCanvas. Todos los elementos visibles en una figura son subclases de Artista.
Matplotlib.artist.Artist.is_transform_set() Método
El método is_transform_set() en el módulo de artista de la biblioteca matplotlib
Sintaxis: Artist.is_transform_set
Parámetros: Este método no acepta ningún parámetro.
Devoluciones: este método devuelve si el artista tiene una transformación establecida explícitamente.
Los siguientes ejemplos ilustran la función matplotlib.artist.Artist.is_transform_set() en matplotlib:
Ejemplo 1:
# Implementation of matplotlib function from matplotlib.artist import Artist import matplotlib.pyplot as plt fig, axs = plt.subplots() axs.plot([1, 2, 3]) axs.set_title("Is artist is explicitly set transform : " +str(Artist.is_transform_set(axs))) fig.suptitle("""matplotlib.artist.Artist.is_transform_set() function Example""", fontweight="bold") plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function from matplotlib.artist import Artist import matplotlib.pyplot as plt fig, (axs, axs2) = plt.subplots(2, 1) gs = axs2.get_gridspec() axbig = fig.add_subplot(gs[1:, -1]) axbig.annotate("Second Axes", (0.4, 0.5), xycoords ='axes fraction', va ='center') axs.set_title("Is artist is explicitly set transform : " +str(Artist.is_transform_set(axs))) fig.suptitle("""matplotlib.artist.Artist.is_transform_set() function Example""", fontweight="bold") plt.show()
Producción:
Publicación traducida automáticamente
Artículo escrito por shivanisinghss2110 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA