Coord is a simple, intuitive vector mathematics library for Rust.
```
extern crate coord;
use coord::prelude::*;
fn length_of
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());
} ```
Vec1
, Vec2
, Vec3
and Vec4
typesVecXu
, VecXi
and VecXf
type definitionsAdd
, Sub
, Mul
, Div
).length()
, .cross(v)
, etc.)