1
2
3
4
5
6
7
8
9
use std::os::raw::c_float;

#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct AiVector3D {
    pub x: c_float,
    pub y: c_float,
    pub z: c_float,
}