beevee: bvh: accelerated: add missing link to BVH

This commit is contained in:
Bruno BELANYI 2020-03-29 20:20:01 +02:00
parent a59bd026bc
commit ad668251d4

View file

@ -24,6 +24,8 @@ pub trait Accelerated: Bounded {
}
/// The automatic implementation for any [`Intersected`] object to be used in the [`BVH`].
///
/// [`BVH`]: struct.BVH.html
impl<T> Accelerated for T
where
T: Intersected,