Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Layout/LayoutEnums.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 803 bytes
Line 
1
2namespace Netron.Diagramming.Core {
3  /// <summary>
4  /// The layout algorithms you can use to lay out a diagram
5  /// </summary>
6  public enum LayoutType {
7    /// <summary>
8    /// A layout based on embedding physical forces like springs and gravitation in the diagram.
9    /// </summary>
10    ForceDirected,
11    /// <summary>
12    /// The Fruchterman-Rheingold layout algorithm.
13    /// </summary>
14    FruchtermanRheingold,
15    /// <summary>
16    /// Children are layed out in shells around the root node.
17    /// </summary>
18    RadialTree,
19    /// <summary>
20    /// Children are layed out in shells around the parent node.
21    /// </summary>
22    Balloon,
23    /// <summary>
24    /// The classic hierarchical layout of tree-like data.
25    /// </summary>
26    ClassicTree
27  }
28}
Note: See TracBrowser for help on using the repository browser.