Trait nabo::Point[][src]

pub trait Point<T: Scalar>: Default {
    const DIM: u32;
    const DIM_BIT_COUNT: u32;
    const DIM_MASK: u32;
    const MAX_NODE_COUNT: u32;

    fn set(&mut self, i: u32, value: NotNan<T>);
fn get(&self, i: u32) -> NotNan<T>; }
Expand description

A point in the space to be searched

Associated Constants

The number of dimension of the space this point lies in.

Derived from DIM, do not reimplement, use the default!

Derived from DIM, do not reimplement, use the default!

Derived from DIM, do not reimplement, use the default!

Required methods

Sets the value for the i-th component, i must be within 0..DIM.

Gets the value for the i-th component, i must be within 0..DIM.

Implementors