SetXYZ

Trait SetXYZ 

Source
pub trait SetXYZ: SetXY + SetZ {
    // Provided method
    fn set_xyz(&mut self, x: f64, y: f64, z: f64) { ... }
}
Expand description

Composite Trait: XY + Z

Provided Methods§

Source

fn set_xyz(&mut self, x: f64, y: f64, z: f64)

Set x, y and z

Implementors§

Source§

impl<T> SetXYZ for T
where T: SetXY + SetZ,