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/Utils/EntityBone.cs

    r2768 r4068  
    1 using System;
    2 using System.Diagnostics;
    3 using System.Collections;
    41using System.Drawing;
    5 using System.Windows.Forms;
    62
    7 namespace Netron.Diagramming.Core
    8 {
     3namespace Netron.Diagramming.Core {
     4  /// <summary>
     5  /// Bare bone structure of an entity related to a scaling transformation
     6  /// </summary>
     7  public struct EntityBone {
    98    /// <summary>
    10     /// Bare bone structure of an entity related to a scaling transformation
     9    /// the rectangle of the entity
    1110    /// </summary>
    12     public struct EntityBone
    13     {
    14         /// <summary>
    15         /// the rectangle of the entity
    16         /// </summary>
    17         private Rectangle mRectangle;
    18         /// <summary>
    19         /// the connector points
    20         /// </summary>
    21         private Point[] mConnectorPoints;
     11    private Rectangle mRectangle;
     12    /// <summary>
     13    /// the connector points
     14    /// </summary>
     15    private Point[] mConnectorPoints;
    2216
    23         /// <summary>
    24         /// Gets or sets the rectangle.
    25         /// </summary>
    26         /// <value>The rectangle.</value>
    27         public Rectangle Rectangle
    28         {
    29             get { return mRectangle; }
    30             set { mRectangle = value; }
    31         }
     17    /// <summary>
     18    /// Gets or sets the rectangle.
     19    /// </summary>
     20    /// <value>The rectangle.</value>
     21    public Rectangle Rectangle {
     22      get { return mRectangle; }
     23      set { mRectangle = value; }
     24    }
    3225
    3326
    34         /// <summary>
    35         /// Gets or sets the connector points.
    36         /// </summary>
    37         /// <value>The connector points.</value>
    38         public Point[] ConnectorPoints
    39         {
    40             get { return mConnectorPoints; }
    41             set { mConnectorPoints = value; }
    42         }
     27    /// <summary>
     28    /// Gets or sets the connector points.
     29    /// </summary>
     30    /// <value>The connector points.</value>
     31    public Point[] ConnectorPoints {
     32      get { return mConnectorPoints; }
     33      set { mConnectorPoints = value; }
    4334    }
     35  }
    4436}
Note: See TracChangeset for help on using the changeset viewer.