(self)
| 2452 | return Mobject |
| 2453 | |
| 2454 | def split(self) -> list[Self]: |
| 2455 | result = [self] if len(self.points) > 0 else [] |
| 2456 | return result + self.submobjects |
| 2457 | |
| 2458 | def get_family(self, recurse: bool = True) -> list[Self]: |
| 2459 | """Lists all mobjects in the hierarchy (family) of the given mobject, |
no outgoing calls