gfxmath-vec2 0.1.6

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