Struct parry2d::shape::PolygonalFeature[][src]

pub struct PolygonalFeature {
    pub vertices: [Point<Real>; 2],
    pub vids: [u32; 2],
    pub fid: u32,
    pub num_vertices: usize,
}

A polygonal feature representing the local polygonal approximation of a vertex, or face, of a convex shape.

Fields

vertices: [Point<Real>; 2]

Up to two vertices forming this polygonal feature.

vids: [u32; 2]

The feature IDs of this polygon’s vertices.

fid: u32

The feature ID of this polygonal feature.

num_vertices: usize

The number of vertices on this polygon (must be <= 4).

Implementations

impl PolygonalFeature[src]

pub fn transform_by(&mut self, pos: &Isometry<Real>)[src]

Transforms the vertices of self by the given position pos.

pub fn contacts<ManifoldData, ContactData: Default + Copy>(
    pos12: &Isometry<Real>,
    pos21: &Isometry<Real>,
    sep_axis1: &Vector<Real>,
    sep_axis2: &Vector<Real>,
    feature1: &Self,
    feature2: &Self,
    prediction: Real,
    manifold: &mut ContactManifold<ManifoldData, ContactData>,
    flipped: bool
)
[src]

Computes the contacts between two polygonal features.

pub fn face_vertex_contacts<ManifoldData, ContactData: Default + Copy>(
    pos12: &Isometry<Real>,
    face1: &Self,
    sep_axis1: &Vector<Real>,
    vertex2: &Self,
    _prediction: Real,
    manifold: &mut ContactManifold<ManifoldData, ContactData>,
    flipped: bool
)
[src]

Compute contacts points between a face and a vertex.

This method assume we already know that at least one contact exists.

pub fn face_face_contacts<ManifoldData, ContactData: Default + Copy>(
    pos12: &Isometry<Real>,
    face1: &Self,
    normal1: &Vector<Real>,
    face2: &Self,
    _prediction: Real,
    manifold: &mut ContactManifold<ManifoldData, ContactData>,
    flipped: bool
)
[src]

Computes the contacts between two polygonal faces.

Trait Implementations

impl Debug for PolygonalFeature[src]

impl Default for PolygonalFeature[src]

impl From<Segment> for PolygonalFeature[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Az for T[src]

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

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

impl<T> CheckedAs for T[src]

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

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

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

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

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> OverflowingAs for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatingAs for T[src]

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<T> UnwrappedAs for T[src]

impl<T> WrappingAs for T[src]