MCPcopy
hub / github.com/ManimCommunity/manim / split

Method split

manim/mobject/mobject.py:2454–2456  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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,

Callers 15

__getitem__Method · 0.95
__iter__Method · 0.95
__len__Method · 0.95
parse_versionFunction · 0.45
convert_to_mystFunction · 0.45
test_tex_whitespace_argFunction · 0.45
test_tex_whitespace_argFunction · 0.45

Calls

no outgoing calls