Create a new `BboxTransform` that linearly transforms points from *boxin* to *boxout*.
(self, boxin, boxout, **kwargs)
| 2590 | is_separable = True |
| 2591 | |
| 2592 | def __init__(self, boxin, boxout, **kwargs): |
| 2593 | """ |
| 2594 | Create a new `BboxTransform` that linearly transforms |
| 2595 | points from *boxin* to *boxout*. |
| 2596 | """ |
| 2597 | _api.check_isinstance(BboxBase, boxin=boxin, boxout=boxout) |
| 2598 | |
| 2599 | super().__init__(**kwargs) |
| 2600 | self._boxin = boxin |
| 2601 | self._boxout = boxout |
| 2602 | self.set_children(boxin, boxout) |
| 2603 | self._mtx = None |
| 2604 | self._inverted = None |
| 2605 | |
| 2606 | __str__ = _make_str_method("_boxin", "_boxout") |
| 2607 |
nothing calls this directly
no test coverage detected