conformal_component::parameters

Struct PiecewiseLinearCurve

Source
pub struct PiecewiseLinearCurve<I> { /* private fields */ }
Expand description

Represents a numeric value that changes over the course of the buffer.

We represent values changing over the course of the buffer as a piecewise linear curve, where the curve moving linearly from point to point.

Note that the curve is guaranteed to begin at 0, however it may end before the end of the buffer - in this case, the value remains constant until the end of the buffer.

Some invariants:

  • There will always be at least one point
  • The first point’s sample_offset will be 0
  • sample_offsets will be monotonically increasing and only one point will appear for each sample_offset
  • All point’s value will be between the parameter’s min and max

Implementations§

Source§

impl<I: IntoIterator<Item = PiecewiseLinearCurvePoint> + Clone> PiecewiseLinearCurve<I>

Source

pub fn new( points: I, buffer_size: usize, valid_range: RangeInclusive<f32>, ) -> Option<Self>

Construct a new PiecewiseLinearCurve from an iterator of points.

This will check the invariants for the curve, and if any are invalid, this will return None.

§Examples
assert!(PiecewiseLinearCurve::new(
  vec![PiecewiseLinearCurvePoint { sample_offset: 0, value: 0.0 },
       PiecewiseLinearCurvePoint { sample_offset: 100, value: 1.0 }],
  128,
  0.0..=1.0,
).is_some());

// Curves must include at least one point
assert!(PiecewiseLinearCurve::new(vec![], 128, 0.0..=1.0).is_none());

// Curves can't go outside the valid range.
assert!(PiecewiseLinearCurve::new(
  vec![PiecewiseLinearCurvePoint { sample_offset: 0, value: 0.0 },
       PiecewiseLinearCurvePoint { sample_offset: 100, value: 2.0 }],
  128,
  0.0..=1.0,
).is_none());

// The curve must not go past the end of the buffer
assert!(PiecewiseLinearCurve::new(
  vec![PiecewiseLinearCurvePoint { sample_offset: 0, value: 0.0 },
       PiecewiseLinearCurvePoint { sample_offset: 128, value: 1.0 }],
  128,
  0.0..=1.0,
).is_none());

// The first point must be at 0
assert!(PiecewiseLinearCurve::new(
  vec![PiecewiseLinearCurvePoint { sample_offset: 50, value: 0.0 },
       PiecewiseLinearCurvePoint { sample_offset: 100, value: 1.0 }],
  128,
  0.0..=1.0,
).is_none());

// Sample offsets must monotonically increase
assert!(PiecewiseLinearCurve::new(
  vec![PiecewiseLinearCurvePoint { sample_offset: 0, value: 0.0 },
       PiecewiseLinearCurvePoint { sample_offset: 100, value: 1.0 },
       PiecewiseLinearCurvePoint { sample_offset: 50, value: 0.5 }],
  128,
  0.0..=1.0,
).is_none());
Source§

impl<I> PiecewiseLinearCurve<I>

Source

pub fn buffer_size(&self) -> usize

Get the size of the buffer this curve is defined over.

Note that the last point may occur before the end of the buffer, in which case the value remains constant from that point until the end of the buffer.

Trait Implementations§

Source§

impl<I: Clone> Clone for PiecewiseLinearCurve<I>

Source§

fn clone(&self) -> PiecewiseLinearCurve<I>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<I: IntoIterator<Item = PiecewiseLinearCurvePoint>> IntoIterator for PiecewiseLinearCurve<I>

Source§

type Item = PiecewiseLinearCurvePoint

The type of the elements being iterated over.
Source§

type IntoIter = <I as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<I> Freeze for PiecewiseLinearCurve<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for PiecewiseLinearCurve<I>
where I: RefUnwindSafe,

§

impl<I> Send for PiecewiseLinearCurve<I>
where I: Send,

§

impl<I> Sync for PiecewiseLinearCurve<I>
where I: Sync,

§

impl<I> Unpin for PiecewiseLinearCurve<I>
where I: Unpin,

§

impl<I> UnwindSafe for PiecewiseLinearCurve<I>
where I: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.