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

Method __init__

site-packages/matplotlib/offsetbox.py:398–428  ·  view source on GitHub ↗

Parameters ---------- pad : float, optional Boundary pad. sep : float, optional Spacing between items. width : float, optional height : float, optional Width and height of the container box, calculated if

(self, pad=None, sep=None, width=None, height=None,
                 align="baseline", mode="fixed",
                 children=None)

Source from the content-addressed store, hash-verified

396 adjusts the relative positions of children at draw time.
397 """
398 def __init__(self, pad=None, sep=None, width=None, height=None,
399 align="baseline", mode="fixed",
400 children=None):
401 """
402 Parameters
403 ----------
404 pad : float, optional
405 Boundary pad.
406
407 sep : float, optional
408 Spacing between items.
409
410 width : float, optional
411
412 height : float, optional
413 Width and height of the container box, calculated if
414 `None`.
415
416 align : str
417 Alignment of boxes.
418
419 mode : str
420 Packing mode.
421
422 Notes
423 -----
424 *pad* and *sep* need to given in points and will be scale with
425 the renderer dpi, while *width* and *height* need to be in
426 pixels.
427 """
428 super().__init__(pad, sep, width, height, align, mode, children)
429
430 def get_extent_offsets(self, renderer):
431 """

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected