Beispiel #1
0
 public void Merge(LineStringBuilder group)
 {
     if (_points != null)
     {
         _points.AddRange(group._points);
     }
     else
     {
         _points = new List <WayCreationPoint>(group._points);
     }
 }
 public void Merge(LineStringBuilder Group)
 {
     if (this.points != null)
     {
         this.points.AddRange(Group.points);
     }
     else
     {
         this.points = new List <SortedPoint>(Group.points);
     }
 }