Trait bevy_rapier2d::prelude::TypedSimdCompositeShape[][src]

pub trait TypedSimdCompositeShape {
    type PartShape: Shape + ?Sized;
    type PartId: IndexedData;
    fn map_typed_part_at(
        &self,
        shape_id: Self::PartId,
        f: impl FnMut(Option<&Isometry<f32, Unit<Complex<f32>>, 2_usize>>, &Self::PartShape)
    );
fn map_untyped_part_at(
        &self,
        shape_id: Self::PartId,
        f: impl FnMut(Option<&Isometry<f32, Unit<Complex<f32>>, 2_usize>>, &(dyn Shape + 'static))
    );
fn typed_quadtree(&self) -> &QBVH<Self::PartId>; }

Associated Types

Required methods

Implementors