namespace Netron.Diagramming.Core { /// /// The layout algorithms you can use to lay out a diagram /// public enum LayoutType { /// /// A layout based on embedding physical forces like springs and gravitation in the diagram. /// ForceDirected, /// /// The Fruchterman-Rheingold layout algorithm. /// FruchtermanRheingold, /// /// Children are layed out in shells around the root node. /// RadialTree, /// /// Children are layed out in shells around the parent node. /// Balloon, /// /// The classic hierarchical layout of tree-like data. /// ClassicTree } }