Trait client::util::ToArr [] [src]

pub trait ToArr {
    type Output;
    fn to_arr(&self) -> Self::Output;
}

Helper trait to easily convert various cgmath types into array form to use them in glium

Associated Types

type Output

Required Methods

fn to_arr(&self) -> Self::Output

Implementors