Mirror2D

Trait Mirror2D 

Source
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§

Source

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.

Implementors§