Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Layout/LayoutEnums.cs

    r2768 r4068  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Text;
    41
    5 namespace Netron.Diagramming.Core
    6 {
     2namespace Netron.Diagramming.Core {
     3  /// <summary>
     4  /// The layout algorithms you can use to lay out a diagram
     5  /// </summary>
     6  public enum LayoutType {
    77    /// <summary>
    8     /// The layout algorithms you can use to lay out a diagram
     8    /// A layout based on embedding physical forces like springs and gravitation in the diagram.
    99    /// </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     }
     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  }
    3328}
Note: See TracChangeset for help on using the changeset viewer.