pub fn local_ray_intersection_with_support_map_with_params<G>(
    shape: &G,
    simplex: &mut VoronoiSimplex,
    ray: &Ray,
    max_time_of_impact: Real,
    solid: bool
) -> Option<RayIntersection>
where G: SupportMap + ?Sized,
Expand description

Cast a ray on a shape using the GJK algorithm.