mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-07-18 03:10:18 +08:00

don't appear at the beggining of a forward pass animation. I think this has to do with a bug in Succession in the core ManimCommunity library.
18 lines
252 B
Python
18 lines
252 B
Python
"""
|
|
Animated flow charts.
|
|
"""
|
|
from manim import *
|
|
|
|
class FlowGraph(VGroup):
|
|
"""Graph container"""
|
|
pass
|
|
|
|
class FlowNode(VGroup):
|
|
"""Node in the FlowGraph"""
|
|
pass
|
|
|
|
class DataNode(FlowNode):
|
|
"""Node that outputs data"""
|
|
pass
|
|
|