示例#1
0
            internal RtreeIterator(Rtree <T> tree, Rectangle r)
            {
                counter   = tree.updateCounter;
                height    = tree.height;
                this.tree = tree;
                if (height == 0)
                {
                    return;
                }

                this.r    = r;
                pageStack = new RtreePage[height];
                posStack  = new int[height];
                Reset();
            }
示例#2
0
 internal RtreeEntryIterator(Rtree <T> tree, Rectangle r)
     : base(tree, r)
 {
 }