Coord


Coord is a simple, intuitive vector mathematics library for Rust.


Example

```

[macro_use]

extern crate coord;

use coord::prelude::*;

fn length_of(vec: V) -> V::Item where V::Item: Float { vec.length() }

fn main() { let v2 = vec2!(1, 2) + vec2!(2, 1); println!("{:?}", v2);

let v3 = vec3!(1.5, 2.0, 6.5) * vec3!(3.2, 7.7, 8.2);
println!("{:?}", v3.length());

} ```

Features