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(); }
internal RtreeEntryIterator(RtreeR2 <T> tree, RectangleR2 r) : base(tree, r) { }