Type Alias Point

Source
pub type Point<T, const D: usize> = OPoint<T, Const<D>>;
Expand description

A point with D elements.

Aliased Type§

#[repr(C)]
pub struct Point<T, const D: usize> { pub coords: Matrix<T, Const<D>, Const<1>, <DefaultAllocator as Allocator<Const<D>>>::Buffer<T>>, }

Fields§

§coords: Matrix<T, Const<D>, Const<1>, <DefaultAllocator as Allocator<Const<D>>>::Buffer<T>>

The coordinates of this point, i.e., the shift from the origin.