예제 #1
0
        // ###############################################################################
        // ### C O N S T R U C T I O N   A N D   I N I T I A L I Z A T I O N
        // ###############################################################################

        #region Construction

        /// <summary>The default constructor.</summary>
        public X11PathFigure()
        {
            _segmentCollection = new X11PathSegmentCollection();
        }
예제 #2
0
 /// <summary>The initializing constructor.</summary>
 public X11PathFigure(IEnumerable <IPathSegment> segments)
 {
     _segmentCollection = new X11PathSegmentCollection(segments);
 }