2个版本

使用旧的Rust 2015

0.1.1 2018年8月19日
0.1.0 2018年6月14日

#1446 in 游戏开发

MIT/Apache

210KB
5.5K SLoC

rs-gmath

=====

图形和游戏中的数学

extern crate gmath;

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

fn main() {
    let position = vec3::new_zero();
    let scale = vec3::new_one();
    let rotation = quat::new_identity();
    let mut matrix = mat4::new_identity();

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

依赖项

~160KB