pub struct ValueCubic;
Expand description
2/3 dimensional Cubic Value noise.
Trait Implementations§
Source§impl Clone for ValueCubic
impl Clone for ValueCubic
Source§fn clone(&self) -> ValueCubic
fn clone(&self) -> ValueCubic
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ValueCubic
impl Debug for ValueCubic
Source§impl Default for ValueCubic
impl Default for ValueCubic
Source§fn default() -> ValueCubic
fn default() -> ValueCubic
Returns the “default value” for a type. Read more
Source§impl Noise for ValueCubic
impl Noise for ValueCubic
Source§fn seed(self, seed: i32) -> Seeded<Self>where
Self: Sized,
fn seed(self, seed: i32) -> Seeded<Self>where
Self: Sized,
Sets a seed to be sampled with. Read more
Source§fn frequency(self, frequency: f32) -> Frequency<Self>where
Self: Sized,
fn frequency(self, frequency: f32) -> Frequency<Self>where
Self: Sized,
Modifies a noise with a frequency multiplier. Read more
Source§fn ridged(self) -> Ridged<Self>where
Self: Sized,
fn ridged(self) -> Ridged<Self>where
Self: Sized,
Modifies a noise to create a peak at 0. Read more
Source§fn triangle_wave(self, frequency: f32) -> TriangleWave<Self>where
Self: Sized,
fn triangle_wave(self, frequency: f32) -> TriangleWave<Self>where
Self: Sized,
Applies a triangle wave to the output of a base noise function. Read more
Source§impl PartialEq for ValueCubic
impl PartialEq for ValueCubic
Source§impl SampleWithSeed<2> for ValueCubic
impl SampleWithSeed<2> for ValueCubic
Source§impl SampleWithSeed<2, Simd<f32, 2>> for ValueCubic
Available on crate feature nightly-simd
only.
impl SampleWithSeed<2, Simd<f32, 2>> for ValueCubic
Available on crate feature
nightly-simd
only.Source§impl SampleWithSeed<3> for ValueCubic
impl SampleWithSeed<3> for ValueCubic
Source§impl SampleWithSeed<3, Simd<f32, 4>> for ValueCubic
Available on crate feature nightly-simd
only.
impl SampleWithSeed<3, Simd<f32, 4>> for ValueCubic
Available on crate feature
nightly-simd
only.impl Copy for ValueCubic
impl Eq for ValueCubic
impl StructuralPartialEq for ValueCubic
Auto Trait Implementations§
impl Freeze for ValueCubic
impl RefUnwindSafe for ValueCubic
impl Send for ValueCubic
impl Sync for ValueCubic
impl Unpin for ValueCubic
impl UnwindSafe for ValueCubic
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