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

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

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

File size: 1.1 KB
Line 
1using System;
2using System.Diagnostics;
3using System.Collections;
4using System.Drawing;
5using System.Windows.Forms;
6
7namespace Netron.Diagramming.Core
8{
9    /// <summary>
10    /// Bare bone structure of an entity related to a scaling transformation
11    /// </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;
22
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        }
32
33
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        }
43    }
44}
Note: See TracBrowser for help on using the repository browser.