[][src]Struct nannou::noise::Worley

pub struct Worley {
    pub range_function: RangeFunction,
    pub enable_range: bool,
    pub frequency: f64,
    pub displacement: f64,
    // some fields omitted
}

Noise function that outputs Worley noise.

Fields

range_function: RangeFunction

Specifies the range function to use when calculating the boundaries of the cell.

enable_range: bool

Determines if the distance from the nearest seed point is applied to the output value.

frequency: f64

Frequency of the seed points.

displacement: f64

Scale of the random displacement to apply to each cell.

The noise function assigns each Worley cell a random constant value from a value noise function. The displacement value controls the range random values to assign to each cell. The range of random values is +/- the displacement value.

Methods

impl Worley[src]

pub const DEFAULT_SEED: u32[src]

pub const DEFAULT_RANGEFUNCTION: RangeFunction[src]

pub const DEFAULT_FREQUENCY: f64[src]

pub const DEFAULT_DISPLACEMENT: f64[src]

pub fn new() -> Worley[src]

pub fn set_range_function(self, range_function: RangeFunction) -> Worley[src]

Sets the range function used by the Worley cells.

pub fn enable_range(self, enable_range: bool) -> Worley[src]

Enables or disables applying the distance from the nearest seed point to the output value.

pub fn set_frequency(self, frequency: f64) -> Worley[src]

Sets the frequency of the seed points.

pub fn set_displacement(self, displacement: f64) -> Worley[src]

Trait Implementations

impl NoiseFn<[f64; 3]> for Worley[src]

impl NoiseFn<[f64; 2]> for Worley[src]

impl NoiseFn<[f64; 4]> for Worley[src]

impl Default for Worley[src]

impl Debug for Worley[src]

impl Seedable for Worley[src]

fn set_seed(self, seed: u32) -> Worley[src]

Sets the seed value used by the Worley cells.

impl Clone for Worley[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for Worley[src]

Auto Trait Implementations

impl Send for Worley

impl Sync for Worley

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Content for T[src]

impl<T> SafeBorrow<T> for T[src]

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.