mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
print_submobject_family -> print_family
This commit is contained in:
parent
20f25615a6
commit
8f556ffb89
1 changed files with 2 additions and 2 deletions
|
@ -894,11 +894,11 @@ class Mobject(Container):
|
|||
submob.shuffle_submobjects(recursive=True)
|
||||
random.shuffle(self.submobjects)
|
||||
|
||||
def print_submobject_family(self, n_tabs=0):
|
||||
def print_family(self, n_tabs=0):
|
||||
"""For debugging purposes"""
|
||||
print("\t" * n_tabs, self, id(self))
|
||||
for submob in self.submobjects:
|
||||
submob.print_submobject_family(n_tabs + 1)
|
||||
submob.print_family(n_tabs + 1)
|
||||
|
||||
# Alignment
|
||||
def align_data(self, mobject):
|
||||
|
|
Loading…
Add table
Reference in a new issue