Files
ManimML/manim_ml/lazy_animation.py
2022-05-15 13:42:21 -04:00

13 lines
323 B
Python

from manim import *
class LazyAnimation(Animation):
def __init__(self, animation_function):
self.animation_function = animation_function
super.__init__()
def begin(self):
update_func_anim = UpdateFromFunc(self.neural_network, create_new_connective)
self.add
super.begin()