struct NoiseStrengthLut {
points: Vec<[f64; 2]>,
}
Expand description
Representation of a piecewise linear curve
Holds n points as (x, y) pairs, that store the curve.
Fields§
§points: Vec<[f64; 2]>
Implementations§
Auto Trait Implementations§
impl Freeze for NoiseStrengthLut
impl RefUnwindSafe for NoiseStrengthLut
impl Send for NoiseStrengthLut
impl Sync for NoiseStrengthLut
impl Unpin for NoiseStrengthLut
impl UnwindSafe for NoiseStrengthLut
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