コード例 #1
0
ファイル: Demo.cs プロジェクト: xavierpena/family_tree
        public Demo()
        {
            InitializeComponent();

            mDiagram = new Diagram();
            mRandom = new Random();
        }
コード例 #2
0
ファイル: Node.cs プロジェクト: xavierpena/family_tree
        Point mLocation; // node position, relative to the origin

        #endregion Fields

        #region Constructors

        /// <summary>
        /// Initialises a new instance of the Node class.
        /// </summary>
        public Node()
        {
            mLocation = Point.Empty;
            mDiagram = null;
            mConnections = new List<Node>();
        }