[][src]Struct mextk_sys::CameraBox

#[repr(C)]pub struct CameraBox {
    pub alloc: *mut c_void,
    pub next: *mut CameraBox,
    pub kind: c_int,
    pub flags: c_int,
    pub cam_pos: Vec3,
    pub bone_pos: Vec3,
    pub direction: f32,
    pub boundleft_curr: f32,
    pub boundright_curr: f32,
    pub boundtop_curr: f32,
    pub boundbottom_curr: f32,
    pub x3c: f32,
    pub boundleft_proj: f32,
    pub boundright_proj: f32,
    pub boundtop_proj: f32,
    pub boundbottom_proj: f32,
}

Fields

alloc: *mut c_voidnext: *mut CameraBoxkind: c_intflags: c_intcam_pos: Vec3bone_pos: Vec3direction: f32boundleft_curr: f32boundright_curr: f32boundtop_curr: f32boundbottom_curr: f32x3c: f32boundleft_proj: f32boundright_proj: f32boundtop_proj: f32boundbottom_proj: f32

Trait Implementations

impl Clone for CameraBox[src]

impl Copy for CameraBox[src]

impl Debug for CameraBox[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.