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

Method _get_xy_display

lib/matplotlib/text.py:294–299  ·  view source on GitHub ↗

Get the (possibly unit converted) transformed x, y in display coords.

(self)

Source from the content-addressed store, hash-verified

292 return inside, cattr
293
294 def _get_xy_display(self):
295 """
296 Get the (possibly unit converted) transformed x, y in display coords.
297 """
298 x, y = self.get_unitless_position()
299 return self.get_transform().transform((x, y))
300
301 def _get_multialignment(self):
302 if self._multialignment is not None:

Callers 1

get_window_extentMethod · 0.95

Calls 3

get_unitless_positionMethod · 0.95
transformMethod · 0.45
get_transformMethod · 0.45

Tested by

no test coverage detected