We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72372ea commit d2dded1Copy full SHA for d2dded1
mathicsscript/format.py
@@ -338,10 +338,12 @@ def format_graph(G):
338
cached_pair = None
339
340
graph_layout = G.graph_layout if hasattr(G, "graph_layout") else None
341
+ node_shape = G.node_shape if hasattr(G, "node_shape") else "o"
342
343
node_size = DEFAULT_NODE_SIZE
344
draw_options = {
345
"node_size": node_size,
346
+ "node_shape": node_shape,
347
# "with_labels": vertex_labels # Set below
348
# "font_size": 12, # Harmonized
349
# "node_color": "white", # Set below
0 commit comments