[][src]Struct 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() -> Self[src]

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

Sets the range function used by the Worley cells.

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

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

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

Sets the frequency of the seed points.

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

Trait Implementations

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

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

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

impl Seedable for Worley[src]

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

Sets the seed value used by the Worley cells.

impl Clone for Worley[src]

impl Default for Worley[src]

impl Copy for Worley[src]

impl Debug for Worley[src]

Auto Trait Implementations

impl Send for Worley

impl Sync for Worley

impl Unpin for Worley

impl RefUnwindSafe for Worley

impl UnwindSafe for Worley

Blanket Implementations

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.

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