Struct noise_rs::simplex_noise::SimplexNoise[][src]

pub struct SimplexNoise {
    pub noise: Noise,
    pub cache2d: IntMap<f64>,
    pub cache3d: HashMap<u128, f64>,
}

Fields

noise: Noisecache2d: IntMap<f64>cache3d: HashMap<u128, f64>

Implementations

impl SimplexNoise[src]

pub fn new(noise: Noise) -> Self[src]

pub fn init(random: Random) -> SimplexNoise[src]

pub fn get_value_2d(&mut self, x: f64, z: f64) -> f64[src]

pub fn get_value_3d(&mut self, x: f64, y: f64, z: f64) -> f64[src]

pub fn get_x0(&self) -> f64[src]

pub fn get_y0(&self) -> f64[src]

pub fn get_z0(&self) -> f64[src]

pub fn get_coordinates(&self) -> (f64, f64, f64)[src]

Trait Implementations

impl Clone for SimplexNoise[src]

impl Debug for SimplexNoise[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> Same<T> for T

type Output = T

Should always be Self

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.