SetXYM

Trait SetXYM 

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

Composite Trait: XY + M

Provided Methods§

Source

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

Set x, y and m

Implementors§

Source§

impl<M: Clone> SetXYM<M> for VectorPoint<M>