Trait geomath::prelude::Array[][src]

pub trait Array<T> {
    fn to_array(&self) -> T;
fn set_array(&mut self, arr: &T) -> &mut Self; }
Expand description

Set an object from an array and convert an object onto an array

Required methods

Convert the object to array

Set the object from array

Implementors