Struct mgf::SupportPoint[][src]

pub struct SupportPoint {
    pub p: Point3<f32>,
    pub a: Point3<f32>,
    pub b: Point3<f32>,
}

A point that stores the local support points as well as the Minkowski difference.

Fields

Trait Implementations

impl Copy for SupportPoint
[src]

impl Clone for SupportPoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SupportPoint
[src]

Formats the value using the given formatter. Read more

impl Into<Point3<f32>> for SupportPoint
[src]

Performs the conversion.

impl From<Point3<f32>> for SupportPoint
[src]

Performs the conversion.

impl<'a, 'b, 'c, 'd, S1, S2> Convex<SupportPoint> for MinkowskiDiff<'a, 'b, S1, S2> where
    S1: Convex + 'a,
    S2: Convex + 'b, 
[src]

Returns the point on the object that produces the greatest dot product with the supplied axis. The axis is expected to be normalized. Read more

Auto Trait Implementations