Trait rapier3d::geometry::SupportMap[][src]

pub trait SupportMap {
    pub fn local_support_point(
        &self,
        dir: &Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>
    ) -> Point<f32, U3>; pub fn local_support_point_toward(
        &self,
        dir: &Unit<Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>>
    ) -> Point<f32, U3> { ... }
pub fn support_point(
        &self,
        transform: &Isometry<f32, U3, Unit<Quaternion<f32>>>,
        dir: &Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>
    ) -> Point<f32, U3> { ... }
pub fn support_point_toward(
        &self,
        transform: &Isometry<f32, U3, Unit<Quaternion<f32>>>,
        dir: &Unit<Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>>
    ) -> Point<f32, U3> { ... } }

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, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>
) -> Point<f32, U3>
[src]

Loading content...

Provided methods

pub fn local_support_point_toward(
    &self,
    dir: &Unit<Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>>
) -> Point<f32, U3>
[src]

Same as self.local_support_point except that dir is normalized.

pub fn support_point(
    &self,
    transform: &Isometry<f32, U3, Unit<Quaternion<f32>>>,
    dir: &Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>
) -> Point<f32, U3>
[src]

pub fn support_point_toward(
    &self,
    transform: &Isometry<f32, U3, Unit<Quaternion<f32>>>,
    dir: &Unit<Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>>
) -> Point<f32, U3>
[src]

Same as self.support_point except that dir is normalized.

Loading content...

Implementations on Foreign Types

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

impl SupportMap for ConstantPoint[src]

impl SupportMap for ConstantOrigin[src]

Loading content...

Implementors

impl SupportMap for Ball[src]

impl SupportMap for Capsule[src]

impl SupportMap for Cone[src]

impl SupportMap for ConvexPolyhedron[src]

impl SupportMap for Cuboid[src]

impl SupportMap for Cylinder[src]

impl SupportMap for Segment[src]

impl SupportMap for Triangle[src]

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

Loading content...