pub type SimdPoint<N> = Point3<N>;Expand description
Generic point type (nalgebra) for SoA SIMD code
Aliased Type§
#[repr(C)]pub struct SimdPoint<N> {
pub coords: Matrix<N, Const<3>, Const<1>, <DefaultAllocator as Allocator<Const<3>>>::Buffer<N>>,
}Fields§
§coords: Matrix<N, Const<3>, Const<1>, <DefaultAllocator as Allocator<Const<3>>>::Buffer<N>>The coordinates of this point, i.e., the shift from the origin.