Trait vox_geometry_rust::intersection_query_engine2::RayIntersectionTestFunc2[][src]

pub trait RayIntersectionTestFunc2<T>: FnMut(&T, &Ray2D) -> bool { }
Expand description

Ray-item intersection test function.

Implementors

impl<T, Super: FnMut(&T, &Ray2D) -> bool> RayIntersectionTestFunc2<T> for Super[src]