*child*: A `Transform` instance. This child may later be replaced with :meth:`set`.
(self, child)
| 1759 | pass_through = True |
| 1760 | |
| 1761 | def __init__(self, child): |
| 1762 | """ |
| 1763 | *child*: A `Transform` instance. This child may later |
| 1764 | be replaced with :meth:`set`. |
| 1765 | """ |
| 1766 | _api.check_isinstance(Transform, child=child) |
| 1767 | super().__init__() |
| 1768 | self.set(child) |
| 1769 | |
| 1770 | def __eq__(self, other): |
| 1771 | return self._child.__eq__(other) |