Trait rapier2d::geometry::SupportMap[][src]

pub trait SupportMap {
    pub fn local_support_point(
        &self,
        dir: &Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>
    ) -> Point<f32, 2_usize>; pub fn local_support_point_toward(
        &self,
        dir: &Unit<Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>>
    ) -> Point<f32, 2_usize> { ... }
pub fn support_point(
        &self,
        transform: &Isometry<f32, Unit<Complex<f32>>, 2_usize>,
        dir: &Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>
    ) -> Point<f32, 2_usize> { ... }
pub fn support_point_toward(
        &self,
        transform: &Isometry<f32, Unit<Complex<f32>>, 2_usize>,
        dir: &Unit<Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>>
    ) -> Point<f32, 2_usize> { ... } }

Traits of convex shapes representable by a support mapping function.

Parameters:

  • V - type of the support mapping direction argument and of the returned point.

Required methods

pub fn local_support_point(
    &self,
    dir: &Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>
) -> Point<f32, 2_usize>
[src]

Loading content...

Provided methods

pub fn local_support_point_toward(
    &self,
    dir: &Unit<Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>>
) -> Point<f32, 2_usize>
[src]

Same as self.local_support_point except that dir is normalized.

pub fn support_point(
    &self,
    transform: &Isometry<f32, Unit<Complex<f32>>, 2_usize>,
    dir: &Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>
) -> Point<f32, 2_usize>
[src]

pub fn support_point_toward(
    &self,
    transform: &Isometry<f32, Unit<Complex<f32>>, 2_usize>,
    dir: &Unit<Matrix<f32, Const<{_: usize}>, Const<1_usize>, ArrayStorage<f32, 2_usize, 1_usize>>>
) -> Point<f32, 2_usize>
[src]

Same as self.support_point except that dir is normalized.

Loading content...

Implementations on Foreign Types

impl SupportMap for ConstantPoint[src]

impl SupportMap for ConstantOrigin[src]

impl<'a, S> SupportMap for DilatedShape<'a, S> where
    S: SupportMap + ?Sized
[src]

Loading content...

Implementors

impl SupportMap for Ball[src]

impl SupportMap for Capsule[src]

impl SupportMap for ConvexPolygon[src]

impl SupportMap for Cuboid[src]

impl SupportMap for Segment[src]

impl SupportMap for Triangle[src]

impl<S> SupportMap for RoundShape<S> where
    S: SupportMap
[src]

Loading content...