pub trait ValueOrNoise {
type Noise;
// Required method
fn into_noise(self) -> Self::Noise;
}
Expand description
Either a f32
or a noise.
Used for Noise
modifier methods.
pub trait ValueOrNoise {
type Noise;
// Required method
fn into_noise(self) -> Self::Noise;
}
Either a f32
or a noise.
Used for Noise
modifier methods.