pub fn vec3_add<T>(a: [T; 3], b: [T; 3]) -> [T; 3]where
    T: Copy + Add<Output = T>,
Expand description

Adds two vectors.