Beispiel #1
0
            internal RtreeIterator(RtreeR2 <T> tree, RectangleR2 r)
            {
                counter   = tree.updateCounter;
                height    = tree.height;
                this.tree = tree;
                if (height == 0)
                {
                    return;
                }

                this.r    = r;
                pageStack = new RtreeR2Page[height];
                posStack  = new int[height];
                Reset();
            }
Beispiel #2
0
 internal RtreeEntryIterator(RtreeR2 <T> tree, RectangleR2 r)
     : base(tree, r)
 {
 }