PointTree

Basic operations to read the KD-tree.

Inheritors

Properties

Link copied to clipboard

Return the maximum packed value of the current node.

Link copied to clipboard

Return the minimum packed value of the current node.

Functions

Link copied to clipboard
abstract override fun clone(): PointValues.PointTree

Clone, the current node becomes the root of the new tree.

Link copied to clipboard
abstract fun moveToChild(): Boolean

Move to the first child node and return true upon success. Returns false for leaf nodes and true otherwise.

Link copied to clipboard
abstract fun moveToParent(): Boolean

Move to the parent node and return true upon success. Returns false for the root node and true otherwise.

Link copied to clipboard
abstract fun moveToSibling(): Boolean

Move to the next sibling node and return true upon success. Returns false if the current node has no more siblings.

Link copied to clipboard
abstract fun size(): Long

Return the number of points below the current node.

Link copied to clipboard

Visit all the docs below the current node.

Link copied to clipboard

Visit all the docs and values below the current node.