[][src]Struct embree::sys::RTCHit16

#[repr(C)]
#[repr(align(64))]pub struct RTCHit16 {
    pub Ng_x: [f32; 16],
    pub Ng_y: [f32; 16],
    pub Ng_z: [f32; 16],
    pub u: [f32; 16],
    pub v: [f32; 16],
    pub primID: [c_uint; 16],
    pub geomID: [c_uint; 16],
    pub instID: [[c_uint; 16]; 1],
}

Fields

Ng_x: [f32; 16]Ng_y: [f32; 16]Ng_z: [f32; 16]u: [f32; 16]v: [f32; 16]primID: [c_uint; 16]geomID: [c_uint; 16]instID: [[c_uint; 16]; 1]

Trait Implementations

impl Clone for RTCHit16[src]

impl Copy for RTCHit16[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.