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