(self, boxin, **kwargs)
| 2680 | is_separable = True |
| 2681 | |
| 2682 | def __init__(self, boxin, **kwargs): |
| 2683 | if not boxin.is_bbox: |
| 2684 | raise ValueError("'boxin' must be bbox") |
| 2685 | |
| 2686 | Affine2DBase.__init__(self, **kwargs) |
| 2687 | self._boxin = boxin |
| 2688 | self.set_children(boxin) |
| 2689 | self._mtx = None |
| 2690 | self._inverted = None |
| 2691 | |
| 2692 | def __str__(self): |
| 2693 | return ("{}(\n" |
nothing calls this directly
no test coverage detected