Files
ManimML/manim_ml/lazy_animation.py
2023-01-01 23:24:59 -05:00

14 lines
324 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()