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 @ 2909

Last change on this file since 2909 was 2768, checked in by mkommend, 14 years ago

added solution folders and sources for the netron library (ticket #867)

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