Exemple #1
0
        public Object Clone()
        {
            NSegmentCollection me = new NSegmentCollection();

            for (int i1 = 0; i1 < this.Count; i1++)
            {
                me.Add((NSegment)this[i1].Clone());
            }
            return(me);
        }
Exemple #2
0
 public NPath()
 {
     Segments            = new NSegmentCollection();
     PenColor            = Color.Black;
     FillColor           = Color.SteelBlue;
     PenWidth            = 1;
     DisplaySizeMultiple = 40;
     WidthF             = 10;
     HeightF            = 10;
     DisplayBoundingBox = true;
 }