Skip to content

Commit

Permalink
Reflect updated plot_scene_graph pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
LimHyungTae committed Dec 12, 2024
1 parent fbe2add commit ea8be5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion notebooks/bindings_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@


# %%
fig = dsg.plot_scene_graph(G, marker_size=6)
layer_settings = {layer.id: {"marker_size": 6} for layer in G.layers}
fig = dsg.plot_scene_graph(G, layer_settings=layer_settings)
if fig is not None:
fig.show(renderer="notebook")

Expand Down

0 comments on commit ea8be5b

Please sign in to comment.