[][src]Trait ncollide3d::shape::SupportMap

pub trait SupportMap<N: RealField> {
    fn support_point(
        &self,
        transform: &Isometry<N>,
        dir: &Vector<N>
    ) -> Point<N>; fn support_point_toward(
        &self,
        transform: &Isometry<N>,
        dir: &Unit<Vector<N>>
    ) -> Point<N> { ... } }

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

fn support_point(&self, transform: &Isometry<N>, dir: &Vector<N>) -> Point<N>

Evaluates the support function of the object.

A support function is a function associating a vector to the shape point which maximizes their dot product.

Loading content...

Provided methods

fn support_point_toward(
    &self,
    transform: &Isometry<N>,
    dir: &Unit<Vector<N>>
) -> Point<N>

Same as self.support_point except that dir is normalized.

Loading content...

Implementors

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

impl<N: RealField> SupportMap<N> for ConstantOrigin[src]

impl<N: RealField> SupportMap<N> for Ball<N>[src]

impl<N: RealField> SupportMap<N> for Capsule<N>[src]

impl<N: RealField> SupportMap<N> for Cone<N>[src]

impl<N: RealField> SupportMap<N> for ConvexHull<N>[src]

impl<N: RealField> SupportMap<N> for Cuboid<N>[src]

impl<N: RealField> SupportMap<N> for Cylinder<N>[src]

impl<N: RealField> SupportMap<N> for Segment<N>[src]

impl<N: RealField> SupportMap<N> for Triangle<N>[src]

Loading content...