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)
| 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 | """ |