pub trait HittableBoundingBoxTrait: BoundingBoxTrait {
    fn hit(&self, ray: &ConstrainedRay3d) -> HitBoxResult;
}

Required methods

Implementors