Build Status Coverage Status

gl-matrix

A Rust implementation of glMatrix

gl_matrix provides utilities or all glMatrix functions in Rust.

# Quick Start

Getting started should be easy if you are already familiar with glMatrix and Rust. All functions have been re-named to be idiomatic Rust.

```rust use glmatrix::common::*; use glmatrix::{vec3, mat4};

let canvasw = 800f32; let canvash = 600f32;

let mut worldmatrix: Mat4 = [0.; 16]; let mut viewmatrix: Mat4 = [0.; 16]; let mut proj_matrix: Mat4 = [0.; 16];

let eye = vec3::fromvalues(0., 0., -8.); let center = vec3::fromvalues(0., 0., 0.); let up = vec3::from_values(0., 1., 0.);

mat4::identity(&mut worldmatrix); mat4::lookat(&mut viewmatrix, &eye, &center, &up); mat4::perspective(&mut projmatrix, toradian(45.), canvasw / canvas_h, 0.1, Some(100.0)); ```

Features

Future work

Usage

Add this to your Cargo.toml:

toml [dependencies] gl-matrix = 0.0

Contributing

See CONTRIBUTING.md

License

gl-matrix is under the terms of the MIT license.

LICENSE