pub trait Mirror<T> {
    fn mirror_x(&self) -> Self;
    fn mirror_y(&self) -> Self;
}
Expand description

Mirror at the x or y axis.

Required Methods

Mirror this shape at the x-axis.

Mirror this shape at the y-axis.

Implementors