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)
| 320 | adjust the relative positions of children in the drawing time. |
| 321 | """ |
| 322 | def __init__(self, pad=None, sep=None, width=None, height=None, |
| 323 | align="baseline", mode="fixed", |
| 324 | children=None): |
| 325 | """ |
| 326 | Parameters |
| 327 | ---------- |
| 328 | pad : float, optional |
| 329 | Boundary pad. |
| 330 | |
| 331 | sep : float, optional |
| 332 | Spacing between items. |
| 333 | |
| 334 | width : float, optional |
| 335 | |
| 336 | height : float, optional |
| 337 | |
| 338 | width and height of the container box, calculated if |
| 339 | `None`. |
| 340 | |
| 341 | align : str, optional |
| 342 | Alignment of boxes. |
| 343 | |
| 344 | mode : str, optional |
| 345 | Packing mode. |
| 346 | |
| 347 | Notes |
| 348 | ----- |
| 349 | *pad* and *sep* need to given in points and will be scale with |
| 350 | the renderer dpi, while *width* and *height* need to be in |
| 351 | pixels. |
| 352 | """ |
| 353 | super().__init__(pad, sep, width, height, align, mode, children) |
| 354 | |
| 355 | def get_extent_offsets(self, renderer): |
| 356 | """ |
no outgoing calls
no test coverage detected