[][src]Struct molecules::pipelines::raymarch::RaymarchGlobals

#[repr(C)]
pub struct RaymarchGlobals {
    pub projection: [f32; 16],
    pub camera_origin: [f32; 3],
    pub padd0: f32,
    pub bb_min: [f32; 3],
    pub padd1: f32,
    pub bb_max: [f32; 3],
    pub padd2: f32,
    pub bb_diff: [f32; 3],
    pub padd3: f32,
    pub bb_size: [f32; 3],
    pub voxel_length: f32,
    pub time: f32,
    pub solvent_radius: f32,
    pub max_neighbours: i32,
    pub save: i32,
}

Fields

projection: [f32; 16]camera_origin: [f32; 3]padd0: f32bb_min: [f32; 3]padd1: f32bb_max: [f32; 3]padd2: f32bb_diff: [f32; 3]padd3: f32bb_size: [f32; 3]voxel_length: f32time: f32solvent_radius: f32max_neighbours: i32save: i32

Trait Implementations

impl Clone for RaymarchGlobals[src]

impl Copy for RaymarchGlobals[src]

impl Default for RaymarchGlobals[src]

impl Pod for RaymarchGlobals[src]

impl Zeroable for RaymarchGlobals[src]

Auto Trait Implementations

impl RefUnwindSafe for RaymarchGlobals

impl Send for RaymarchGlobals

impl Sync for RaymarchGlobals

impl Unpin for RaymarchGlobals

impl UnwindSafe for RaymarchGlobals

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> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,