Trait mgf::Convex[][src]

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

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