mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-05-17 18:55:54 +08:00
23 lines
257 B
Python
23 lines
257 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
|