bevy_rapier3d/geometry/shape_views/
convex_polyhedron.rsuse crate::math::Vect;
use rapier::parry::shape::ConvexPolyhedron;
#[derive(Copy, Clone)]
pub struct ConvexPolyhedronView<'a> {
pub raw: &'a ConvexPolyhedron,
}
impl ConvexPolyhedronView<'_> {
pub fn points(&self) -> impl ExactSizeIterator<Item = Vect> + '_ {
self.raw.points().iter().map(|pt| (*pt).into())
}
}
pub struct ConvexPolyhedronViewMut<'a> {
pub raw: &'a mut ConvexPolyhedron,
}
impl ConvexPolyhedronViewMut<'_> {
pub fn points(&self) -> impl ExactSizeIterator<Item = Vect> + '_ {
self.raw.points().iter().map(|pt| (*pt).into())
}
}