mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Fix print_family
This commit is contained in:
parent
5ea6c0f525
commit
a95318f1ab
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ def print_family(mobject, n_tabs=0):
|
|||
"""For debugging purposes"""
|
||||
print("\t" * n_tabs, mobject, id(mobject))
|
||||
for submob in mobject.submobjects:
|
||||
submob.print_family(n_tabs + 1)
|
||||
print_family(submob, n_tabs + 1)
|
||||
|
||||
|
||||
def get_submobject_index_labels(mobject, label_height=0.15):
|
||||
|
|
Loading…
Add table
Reference in a new issue