Skip to content

Commit

Permalink
WIP: fix chunk error
Browse files Browse the repository at this point in the history
  • Loading branch information
grtlr committed Nov 25, 2024
1 parent d4cd58d commit 6025532
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/snippets/all/archetypes/graph_undirected.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@
rr.GraphNodes(
node_ids=["a", "b", "c"], positions=[(0.0, 100.0), (-100.0, 0.0), (100.0, 0.0)], labels=["A", "B", "C"]
),
)
rr.log(
"simple",
rr.GraphEdges(edges=[("a", "b"), ("b", "c"), ("c", "a")], graph_type="undirected"),
)

0 comments on commit 6025532

Please sign in to comment.