pub enum NoiseType {
Value,
ValueFractal,
Perlin,
PerlinFractal,
Simplex,
SimplexFractal,
Cellular,
WhiteNoise,
Cubic,
CubicFractal,
}
Expand description
Type of noise to generate
Variants§
Value
ValueFractal
Perlin
PerlinFractal
Simplex
SimplexFractal
Cellular
WhiteNoise
Cubic
CubicFractal
Trait Implementations§
impl Copy for NoiseType
impl StructuralPartialEq for NoiseType
Auto Trait Implementations§
impl Freeze for NoiseType
impl RefUnwindSafe for NoiseType
impl Send for NoiseType
impl Sync for NoiseType
impl Unpin for NoiseType
impl UnwindSafe for NoiseType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more