assimp-sys 0.3.1

Rust FFI bindings for the Assimp library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::os::raw::c_float;

#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct AiMatrix3x3 {
    pub a1: c_float,
    pub a2: c_float,
    pub a3: c_float,
    pub b1: c_float,
    pub b2: c_float,
    pub b3: c_float,
    pub c1: c_float,
    pub c2: c_float,
    pub c3: c_float,
}