MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / draw_artist

Method draw_artist

lib/matplotlib/axes/_base.py:3356–3360  ·  view source on GitHub ↗

Efficiently redraw a single artist.

(self, a)

Source from the content-addressed store, hash-verified

3354 self.stale = False
3355
3356 def draw_artist(self, a):
3357 """
3358 Efficiently redraw a single artist.
3359 """
3360 a.draw(self.get_figure(root=True).canvas.get_renderer())
3361
3362 def redraw_in_frame(self):
3363 """

Calls 3

drawMethod · 0.45
get_rendererMethod · 0.45
get_figureMethod · 0.45