assimp-sys 0.3.1

Rust FFI bindings for the Assimp library
Documentation
use std::os::raw::c_float;

#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct AiMatrix4x4 {
    pub a1: c_float,
    pub a2: c_float,
    pub a3: c_float,
    pub a4: c_float,
    pub b1: c_float,
    pub b2: c_float,
    pub b3: c_float,
    pub b4: c_float,
    pub c1: c_float,
    pub c2: c_float,
    pub c3: c_float,
    pub c4: c_float,
    pub d1: c_float,
    pub d2: c_float,
    pub d3: c_float,
    pub d4: c_float,
}