[][src]Struct parry3d::query::epa::epa3::EPA

pub struct EPA { /* fields omitted */ }

The Expanding Polytope Algorithm in 3D.

Implementations

impl EPA[src]

pub fn new() -> Self[src]

Creates a new instance of the 3D Expanding Polytope Algorithm.

pub fn project_origin<G: ?Sized>(
    &mut self,
    m: &Isometry<Real>,
    g: &G,
    simplex: &VoronoiSimplex
) -> Option<Point<Real>> where
    G: SupportMap
[src]

Projects the origin on boundary of the given shape.

The origin is assumed to be inside of the shape. If it is outside use the GJK algorithm instead. Return None if the origin is not inside of the shape or if the EPA algorithm failed to compute the projection.

Return the projected point in the local-space of g.

pub fn closest_points<G1: ?Sized, G2: ?Sized>(
    &mut self,
    pos12: &Isometry<Real>,
    g1: &G1,
    g2: &G2,
    simplex: &VoronoiSimplex
) -> Option<(Point<Real>, Point<Real>, Unit<Vector<Real>>)> where
    G1: SupportMap,
    G2: SupportMap
[src]

Projects the origin on a shape unsing the EPA algorithm.

The origin is assumed to be located inside of the shape. Returns None if the EPA fails to converge or if g1 and g2 are not penetrating.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,