mirror of
https://github.com/3b1b/manim.git
synced 2025-07-28 04:23:16 +08:00
5 lines
107 B
Python
5 lines
107 B
Python
def always_redraw(func):
|
|
mob = func()
|
|
mob.add_updater(lambda m: mob.become(func()))
|
|
return mob
|