Type Alias kiddo::ImmutableKdTree

source ·
pub type ImmutableKdTree<A, const K: usize> = ImmutableKdTree<A, u64, K, 32>;
Expand description

An immutable floating-point k-d tree with default parameters.

A is the floating point type (f32 or f64, or f16 if the f16 feature is enabled). K is the number of dimensions. See ImmutableKdTree for details of how to use.

To manually specify more advanced parameters, use ImmutableKdTree directly. To store positions using integer or fixed-point types, use fixed::kdtree::KdTree.

Aliased Type§

struct ImmutableKdTree<A, const K: usize> { /* private fields */ }