rs-gmath

=====

math for graphics and games

```rust extern crate gmath;

use gmath::{vec3, quat, mat4};

fn main() { let position = vec3::newzero(); let scale = vec3::newone(); let rotation = quat::newidentity(); let mut matrix = mat4::newidentity();

mat4::compose(&mut matrix, &position, &scale, &rotation);

} ```