Type Alias jumpy::core::physics::collisions::rapier::nalgebra::Point2

source ·
pub type Point2<T> = OPoint<T, Const<2>>;
Expand description

A statically sized 2-dimensional column point.

Because this is an alias, not all its methods are listed here. See the Point type too.

Aliased Type§

struct Point2<T> {
    pub coords: Matrix<T, Const<2>, Const<1>, <DefaultAllocator as Allocator<T, Const<2>>>::Buffer>,
}

Fields§

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

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