Reflect3D

Trait Reflect3D 

Source
pub trait Reflect3D<T = Self> {
    // Required method
    fn reflect_3d(&self, plane: &Plane) -> T;
}
Expand description

Reflects a 2D geometry along a line.

Required Methods§

Source

fn reflect_3d(&self, plane: &Plane) -> T

Mirror a 2D geometry.

Implementations on Foreign Types§

Source§

impl Reflect3D for Vector3<f32>

Source§

fn reflect_3d(&self, plane: &Plane) -> Self

Implementors§