Bases: TypedDict
Calculated layer dimension info for a layer.
Source code in src\helpers\bounds.py
| class LayerDimensions(TypedDict):
"""Calculated layer dimension info for a layer."""
width: int
height: int
center_x: int
center_y: int
left: int
right: int
top: int
bottom: int
|