[][src]Trait noise_fn::helpers::SeedOnlyNoise

pub trait SeedOnlyNoise {
    type Seed;
    type Value;
    fn seed(seed: Self::Seed) -> Self;
}

A helper trait which uses EmptyConfig to automatically implement seeding.

Associated Types

type Seed

type Value

Loading content...

Required methods

fn seed(seed: Self::Seed) -> Self

Loading content...

Implementors

impl SeedOnlyNoise for HashNoise[src]

type Seed = u64

type Value = u64

impl SeedOnlyNoise for Simplex[src]

type Seed = u64

type Value = f64

impl SeedOnlyNoise for WhiteNoise[src]

type Seed = u64

type Value = u8

Loading content...