MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / draw

Method draw

site-packages/matplotlib/text.py:1410–1418  ·  view source on GitHub ↗

Draw the :class:`TextWithDash` object to the given *renderer*.

(self, renderer)

Source from the content-addressed store, hash-verified

1408 return tuple(props)
1409
1410 def draw(self, renderer):
1411 """
1412 Draw the :class:`TextWithDash` object to the given *renderer*.
1413 """
1414 self.update_coords(renderer)
1415 Text.draw(self, renderer)
1416 if self.get_dashlength() > 0.0:
1417 self.dashline.draw(renderer)
1418 self.stale = False
1419
1420 def update_coords(self, renderer):
1421 """

Callers

nothing calls this directly

Calls 3

update_coordsMethod · 0.95
get_dashlengthMethod · 0.95
drawMethod · 0.45

Tested by

no test coverage detected