pub trait NoiseDomain<Arg>: Noise {
    fn noise(&self, arg: Arg) -> Self::Value;
}
Expand description

A domain over which a noise function operates.

Required Methods

Get the value of the noise at a particular ‘location’.

Implementors