mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Remove Mobject.print_family, as that is now in utils.debug
This commit is contained in:
parent
84e7bdb2b1
commit
94a3883880
1 changed files with 0 additions and 6 deletions
|
@ -971,12 +971,6 @@ class Mobject(Container):
|
|||
submob.shuffle(recursive=True)
|
||||
random.shuffle(self.submobjects)
|
||||
|
||||
def print_family(self, n_tabs=0):
|
||||
"""For debugging purposes"""
|
||||
print("\t" * n_tabs, self, id(self))
|
||||
for submob in self.submobjects:
|
||||
submob.print_family(n_tabs + 1)
|
||||
|
||||
# Just here to keep from breaking old scenes.
|
||||
def arrange_submobjects(self, *args, **kwargs):
|
||||
return self.arrange(*args, **kwargs)
|
||||
|
|
Loading…
Add table
Reference in a new issue