pub struct Select<'a, T> {
pub source1: &'a dyn NoiseFn<T>,
pub source2: &'a dyn NoiseFn<T>,
pub control: &'a dyn NoiseFn<T>,
pub bounds: (f64, f64),
pub falloff: f64,
}
Expand description
Noise function that outputs the value selected from one of two source functions chosen by the output value from a control function.
Fields§
§source1: &'a dyn NoiseFn<T>
Outputs a value.
source2: &'a dyn NoiseFn<T>
Outputs a value.
control: &'a dyn NoiseFn<T>
Determines the value to select. If the output value from
the control function is within a range of values know as the selection
range, this noise function outputs the value from source2
.
Otherwise, this noise function outputs the value from source1
.
bounds: (f64, f64)
Bounds of the selection range. Default is 0.0 to 1.0.
falloff: f64
Edge falloff value. Default is 0.0.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for Select<'a, T>
impl<'a, T> !Send for Select<'a, T>
impl<'a, T> !Sync for Select<'a, T>
impl<'a, T> Unpin for Select<'a, T>
impl<'a, T> !UnwindSafe for Select<'a, T>
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