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

Method width

site-packages/matplotlib/transforms.py:396–402  ·  view source on GitHub ↗

The width of the bounding box. It may be negative if :attr:`x1` < :attr:`x0`.

(self)

Source from the content-addressed store, hash-verified

394
395 @property
396 def width(self):
397 """
398 The width of the bounding box. It may be negative if
399 :attr:`x1` < :attr:`x0`.
400 """
401 points = self.get_points()
402 return points[1, 0] - points[0, 0]
403
404 @property
405 def height(self):

Callers 11

paintEventMethod · 0.80
paintEventMethod · 0.80
resizeEventMethod · 0.80
_draw_idleMethod · 0.80
__init__Method · 0.80
resizeMethod · 0.80
sFunction · 0.80
jquery-ui.min.jsFile · 0.80
getDimensionsFunction · 0.80
jquery-ui.jsFile · 0.80
test_dpi_ratio_changeFunction · 0.80

Calls 1

get_pointsMethod · 0.95

Tested by 1

test_dpi_ratio_changeFunction · 0.64