pub trait Vector<T>where T: Copy,{ // Required method fn as_vec3(&self, neutral: T) -> Vec3<T>; }
Values that can be converted to a vector.
Returns the given value as a Vec3