I am trying to plot a directed planar graph in Maple but the command only accepts undirected graphs. The documentation does not mention this restriction. Is there a way to plot them in maple?
A small working example:
restart:
with(GraphTheory):
G:=Graph({{1,2},{2,3},{3,4}});
DrawPlanar(G);
This works but defines an undirected graph. By changing the {1,2} to [1,2], the edge is made directional and the DrawPlanar fails. Does anyone know how to create a planar plot of a directed graph?