assimp_sys/types/matrix4.rs
1use std::os::raw::c_float;
2
3#[repr(C)]
4#[derive(Clone, Copy, Debug, PartialEq)]
5pub struct AiMatrix4x4 {
6 pub a1: c_float,
7 pub a2: c_float,
8 pub a3: c_float,
9 pub a4: c_float,
10 pub b1: c_float,
11 pub b2: c_float,
12 pub b3: c_float,
13 pub b4: c_float,
14 pub c1: c_float,
15 pub c2: c_float,
16 pub c3: c_float,
17 pub c4: c_float,
18 pub d1: c_float,
19 pub d2: c_float,
20 pub d3: c_float,
21 pub d4: c_float,
22}