SetXYZM

Trait SetXYZM 

Source
pub trait SetXYZM<M>:
    SetXY
    + SetZ
    + SetM<M> {
    // Provided method
    fn set_xyzm(&mut self, x: f64, y: f64, z: f64, m: M) { ... }
}
Expand description

Composite Trait: XY + Z + M

Provided Methods§

Source

fn set_xyzm(&mut self, x: f64, y: f64, z: f64, m: M)

Set x, y, z and m

Implementors§

Source§

impl<T, M> SetXYZM<M> for T
where T: SetXY + SetZ + SetM<M>,