mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-05-18 03:05:23 +08:00
14 lines
324 B
Python
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()
|