Exemple #1
0
 public IndexEntry(Orthotope mbr, int offset)
 {
     this.mbr = mbr.Copy();
     this.offset = offset;
 }
Exemple #2
0
 public LeafNode(Orthotope bounds)
 {
     if (bounds == null)
         throw new ArgumentNullException();
     this.bounds = bounds.Copy();
     this.height = 0;
     points = new List<Point>();
 }