[][src]Struct embree::sys::RTCDisplacementFunctionNArguments

#[repr(C)]pub struct RTCDisplacementFunctionNArguments {
    pub geometryUserPtr: *mut c_void,
    pub geometry: RTCGeometry,
    pub primID: c_uint,
    pub timeStep: c_uint,
    pub u: *const f32,
    pub v: *const f32,
    pub Ng_x: *const f32,
    pub Ng_y: *const f32,
    pub Ng_z: *const f32,
    pub P_x: *mut f32,
    pub P_y: *mut f32,
    pub P_z: *mut f32,
    pub N: c_uint,
}

Fields

geometryUserPtr: *mut c_voidgeometry: RTCGeometryprimID: c_uinttimeStep: c_uintu: *const f32v: *const f32Ng_x: *const f32Ng_y: *const f32Ng_z: *const f32P_x: *mut f32P_y: *mut f32P_z: *mut f32N: c_uint

Trait Implementations

impl Clone for RTCDisplacementFunctionNArguments[src]

impl Copy for RTCDisplacementFunctionNArguments[src]

impl Debug for RTCDisplacementFunctionNArguments[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.