pub trait BoxedMirror {
    // Required method
    fn boxed_mirrored(
        &self,
        mirror_matrix: &Matrix3<f32>
    ) -> Box<dyn GeometryInterface + Sync + Send>;
}

Required Methods§

source

fn boxed_mirrored( &self, mirror_matrix: &Matrix3<f32> ) -> Box<dyn GeometryInterface + Sync + Send>

Implementors§

source§

impl<Geometry> BoxedMirror for Geometrywhere Geometry: GeometryInterface + Mirror + Sync + Send,