[][src]Struct parry3d::shape::PolygonalFeature

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

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

Fields

vertices: [Point<Real>; 4]

Up to four vertices forming this polygonal feature.

vids: [u32; 4]

The feature IDs of this polygon's vertices.

eids: [u32; 4]

The feature IDs of this polygon's edges.

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 new() -> Self[src]

Creates a new empty polygonal feature.

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

Transform each vertex of this polygonal feature 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 all the contacts between two polygonal features.

Trait Implementations

impl Clone for PolygonalFeature[src]

impl Debug for PolygonalFeature[src]

impl Default for PolygonalFeature[src]

impl From<Segment> for PolygonalFeature[src]

impl From<Triangle> for PolygonalFeature[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,