Trait MirrorObject
Source pub trait MirrorObject: Object {
// Provided methods
fn mirror<T: Number>(self, x: T, y: T, z: T) -> Mirror<Self>
where Self: Sized { ... }
fn mirror_x<T: Number>(self, x: T) -> Mirror<Self>
where Self: Sized { ... }
fn mirror_y<T: Number>(self, y: T) -> Mirror<Self>
where Self: Sized { ... }
fn mirror_z<T: Number>(self, z: T) -> Mirror<Self>
where Self: Sized { ... }
fn mirror_xy<T: Number>(self, x: T, y: T) -> Mirror<Self>
where Self: Sized { ... }
fn mirror_xz<T: Number>(self, x: T, z: T) -> Mirror<Self>
where Self: Sized { ... }
fn mirror_yz<T: Number>(self, y: T, z: T) -> Mirror<Self>
where Self: Sized { ... }
}