You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed that every time self.wait() is invoked, a Mobject is added to the self.mobjects list. Is this wanted behaviour? If so, what is the rationale behind?
In my opinion such a behaviour makes the self.mobjects list management a little cumbersome.
To reproduce one could run something like
c = Circle(name= "MyCircle")
self.add(c)
print(self.mobjects)
self.wait()
self.wait()
print(self.mobjects)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have noticed that every time
self.wait()
is invoked, a Mobject is added to theself.mobjects
list. Is this wanted behaviour? If so, what is the rationale behind?In my opinion such a behaviour makes the
self.mobjects
list management a little cumbersome.To reproduce one could run something like
Beta Was this translation helpful? Give feedback.
All reactions