Struct mgf::Manifold[][src]

pub struct Manifold {
    pub time: f32,
    pub normal: Vector3<f32>,
    pub tangent_vector: [Vector3<f32>; 2],
    pub contacts: SmallVec<[(Point3<f32>, Point3<f32>); 4]>,
}

A set of contacts between two objects.

Fields

List of the local contact points.

Methods

impl Manifold
[src]

Trait Implementations

impl Clone for Manifold
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Manifold
[src]

Formats the value using the given formatter. Read more

impl From<LocalContact> for Manifold
[src]

Performs the conversion.

impl<P: PruningParams> From<ContactPruner<P>> for Manifold
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Manifold

impl Sync for Manifold