[][src]Struct fastnoise_simd_bindings::FastNoiseVectorSet

#[repr(C)]pub struct FastNoiseVectorSet {
    pub size: c_int,
    pub xSet: *mut f32,
    pub ySet: *mut f32,
    pub zSet: *mut f32,
    pub sampleScale: c_int,
    pub sampleSizeX: c_int,
    pub sampleSizeY: c_int,
    pub sampleSizeZ: c_int,
}

Fields

size: c_intxSet: *mut f32ySet: *mut f32zSet: *mut f32sampleScale: c_intsampleSizeX: c_intsampleSizeY: c_intsampleSizeZ: c_int

Implementations

impl FastNoiseVectorSet[src]

pub unsafe fn Free(&mut self)[src]

pub unsafe fn SetSize(&mut self, _size: c_int)[src]

Trait Implementations

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