Create a new `BboxTransformTo` that linearly transforms points from the unit bounding box to *boxout*.
(self, boxout, **kwargs)
| 2633 | is_separable = True |
| 2634 | |
| 2635 | def __init__(self, boxout, **kwargs): |
| 2636 | """ |
| 2637 | Create a new `BboxTransformTo` that linearly transforms |
| 2638 | points from the unit bounding box to *boxout*. |
| 2639 | """ |
| 2640 | _api.check_isinstance(BboxBase, boxout=boxout) |
| 2641 | |
| 2642 | super().__init__(**kwargs) |
| 2643 | self._boxout = boxout |
| 2644 | self.set_children(boxout) |
| 2645 | self._mtx = None |
| 2646 | self._inverted = None |
| 2647 | |
| 2648 | __str__ = _make_str_method("_boxout") |
| 2649 |
nothing calls this directly
no test coverage detected