Trait radiant_utils::maths::Vector[][src]

pub trait Vector<T> where
    T: Copy
{ fn as_vec3(&self, neutral: T) -> Vec3<T>; }

Values that can be converted to a vector.

Required Methods

Returns the given value as a Vec3

Implementations on Foreign Types

impl<T> Vector<T> for (T, T, T) where
    T: Copy
[src]

impl<T> Vector<T> for (T, T) where
    T: Copy
[src]

Implementors