Trait mgf::Convex [] [src]

pub trait Convex {
    fn support(&self, axis: Vector3<f32>) -> Point3<f32>;
}

A type that represents a convex volume.

Required Methods

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

Implementors