pub struct Curve<'a, T> {
pub source: &'a dyn NoiseFn<T>,
/* private fields */
}
Expand description
Noise function that maps the output value from the source function onto an arbitrary function curve.
This noise function maps the output value from the source function onto an application-defined curve. The curve is defined by a number of control points; each control point has an input value that maps to an output value.
To add control points to the curve, use the add_control_point
method.
Since the curve is a cubic spline, an application must have a minimum of four control points to the curve. If there is less than four control points, the get() method panics. Each control point can have any input and output value, although no two control points can have the same input.
Fields§
§source: &'a dyn NoiseFn<T>
Outputs a value.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for Curve<'a, T>
impl<'a, T> !Send for Curve<'a, T>
impl<'a, T> !Sync for Curve<'a, T>
impl<'a, T> Unpin for Curve<'a, T>
impl<'a, T> !UnwindSafe for Curve<'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