Exemple #1
0
 /// <summary>
 /// Creates a <see cref="DirectedGraph"/> with the specified parameters.
 /// </summary>
 /// <param name="layout">The layout of the directed graph.</param>
 /// <param name="graphDirection">The direction of the graph.</param>
 /// <returns>The directed graph configured with the specified parameters.</returns>
 public static DirectedGraph Create(LayoutEnum layout, GraphDirectionEnum graphDirection)
 => new DirectedGraph
 {
     Layout                  = layout,
     LayoutSpecified         = true,
     GraphDirection          = graphDirection,
     GraphDirectionSpecified = true,
 };
 /// <summary>
 /// Creates a <see cref="DirectedGraph"/> with the specified parameters.
 /// </summary>
 /// <param name="layout">The layout of the directed graph.</param>
 /// <param name="graphDirection">The direction of the graph.</param>
 /// <returns>The directed graph configured with the specified parameters.</returns>
 public DirectedGraph Create(LayoutEnum layout, GraphDirectionEnum graphDirection)
 {
     var graph = new DirectedGraph();
     graph.Layout = layout;
     graph.LayoutSpecified = true;
     graph.GraphDirection = graphDirection;
     graph.GraphDirectionSpecified = true;
     return graph;
 }