mathl 0.0.2

A math library for Rust. The goal is to use this with rhai
Documentation
1
2
3
4
5
6
//! Matrix type and any implemented trats

#[inline(always)]
pub fn mat2x2_zero() -> [[f64; 2]; 2] {
    [[0.0; 2]; 2]
}