pub trait Mirror2D<T = Self>: Reflect2D<T> + Into<Geometry2D> {
// Provided method
fn mirror_2d(self, l: &Line) -> Geometries2D { ... }
}Expand description
Mirrors a 2D geometry, keeping the original (in contrast to reflect).
Provided Methods§
Sourcefn mirror_2d(self, l: &Line) -> Geometries2D
fn mirror_2d(self, l: &Line) -> Geometries2D
Mirror operation.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.