pub fn cast_ray<N, G: ?Sized>(
    m: &Isometry<N>,
    shape: &G,
    simplex: &mut VoronoiSimplex<N>,
    ray: &Ray<N>
) -> Option<(N, Vector<N>)>where
    N: Real,
    G: SupportMap<N>,
Expand description

Casts a ray on a support map using the GJK algorithm.