Function vec3_dot

Source
pub fn vec3_dot<T>(a: Vector3<T>, b: Vector3<T>) -> T
where T: Copy + Add<T, Output = T> + Mul<T, Output = T>,
Expand description

Computes the dot product.