Struct noise_functions::Fbm
source · pub struct Fbm<Noise> {
pub base: Noise,
pub octaves: u32,
pub gain: f32,
pub lacunarity: f32,
pub fractal_bounding: f32,
}
Fields§
§base: Noise
§octaves: u32
§gain: f32
§lacunarity: f32
§fractal_bounding: f32
Implementations§
Trait Implementations§
source§impl<Noise, const DIM: usize, const LANES: usize> Sample<DIM, Simd<f32, LANES>> for Fbm<Noise>
Available on crate feature nightly-simd
only.
impl<Noise, const DIM: usize, const LANES: usize> Sample<DIM, Simd<f32, LANES>> for Fbm<Noise>
Available on crate feature
nightly-simd
only.impl<Noise: Copy> Copy for Fbm<Noise>
Auto Trait Implementations§
impl<Noise> Freeze for Fbm<Noise>where
Noise: Freeze,
impl<Noise> RefUnwindSafe for Fbm<Noise>where
Noise: RefUnwindSafe,
impl<Noise> Send for Fbm<Noise>where
Noise: Send,
impl<Noise> Sync for Fbm<Noise>where
Noise: Sync,
impl<Noise> Unpin for Fbm<Noise>where
Noise: Unpin,
impl<Noise> UnwindSafe for Fbm<Noise>where
Noise: UnwindSafe,
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