public void Add(XbimBBoxClusterElement otherElement)
 {
     GeometryIds = new List<int>(otherElement.GeometryIds.Count);
     GeometryIds.AddRange(otherElement.GeometryIds);
     Bound.Union(otherElement.Bound);
 }
Пример #2
0
 public void Add(XbimBBoxClusterElement otherElement)
 {
     // assumes both local variables and others cannot be null
     GeometryIds.AddRange(otherElement.GeometryIds);
     Bound.Union(otherElement.Bound);
 }
Пример #3
0
 public void Add(XbimBBoxClusterElement otherElement)
 {
     GeometryIds = new List <int>(otherElement.GeometryIds.Count);
     GeometryIds.AddRange(otherElement.GeometryIds);
     Bound.Union(otherElement.Bound);
 }