[][src]Struct embree::sys::RTCHit

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

Fields

Ng_x: f32Ng_y: f32Ng_z: f32u: f32v: f32primID: c_uintgeomID: c_uintinstID: [c_uint; 1]

Implementations

impl RTCHit[src]

pub fn new() -> Hit[src]

pub fn hit(&self) -> bool[src]

Trait Implementations

impl Clone for RTCHit[src]

impl Copy for RTCHit[src]

impl Debug for RTCHit[src]

Auto Trait Implementations

impl RefUnwindSafe for RTCHit

impl Send for RTCHit

impl Sync for RTCHit

impl Unpin for RTCHit

impl UnwindSafe for RTCHit

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.