Trait geomath::prelude::Vector[][src]

pub trait Vector<T> {
    fn to_vector(&self) -> T;
fn set_vector(&mut self, arr: &T) -> &mut Self; }
Expand description

Set an object from a vector and convert an object onto a vector

Required methods

Convert the object to vector

Set the object from vector

Implementors