motion-canvas-graphing
motion-canvas-graphing copied to clipboard
Add a Graph Component
Ideally we have a graph component that can represent a network of nodes and edges within a graph.
view.add(<Graph>
<Node>A</Node>
<Node>B</Node>
<Edge points={['A', 'B']}></Edge>
</Graph>);