(self, boxin, **kwargs)
| 2670 | is_separable = True |
| 2671 | |
| 2672 | def __init__(self, boxin, **kwargs): |
| 2673 | _api.check_isinstance(BboxBase, boxin=boxin) |
| 2674 | |
| 2675 | super().__init__(**kwargs) |
| 2676 | self._boxin = boxin |
| 2677 | self.set_children(boxin) |
| 2678 | self._mtx = None |
| 2679 | self._inverted = None |
| 2680 | |
| 2681 | __str__ = _make_str_method("_boxin") |
| 2682 |
nothing calls this directly
no test coverage detected