Esempio n. 1
0
 public void addEntryNoCopy(Rectangle r, int id)
 {
     ids[entryCount]     = id;
     entries[entryCount] = r;
     entryCount++;
     if (mbr == null)
     {
         mbr = r.copy();
     }
     else
     {
         mbr.add(r);
     }
 }
Esempio n. 2
0
 private void add(Rectangle r, int id)
 {
     add(r.copy(), id, 1);
     msize++;
 }
Esempio n. 3
0
File: RTree.cs Progetto: huy4vn/DATN
        public void add(Rectangle r, int id)
        {
            add(r.copy(), id, 1);

            msize++;
        }