gfxmath_vec3/ops/
norm.rs

1/// Normalize a vector
2pub trait Norm {
3    type Output;
4    fn norm(self) -> Self::Output;
5}