[][src]Struct nannou_laser::stream::frame::opt::InterpolationConfig

pub struct InterpolationConfig {
    pub distance_per_point: f32,
    pub blank_delay_points: u32,
    pub radians_per_point: f32,
}

Configuration options for eulerian circuit interpolation.

Fields

distance_per_point: f32

The minimum distance the interpolator can travel along an edge before a new point is required.

blank_delay_points: u32

The number of points to insert at the end of a blank to account for light modulator delay.

radians_per_point: f32

The amount of delay to add based on the angle of the corner in radians.

Methods

impl InterpolationConfig[src]

pub const DEFAULT_DISTANCE_PER_POINT: f32[src]

The default distance the interpolator can travel before a new point is required.

pub const DEFAULT_BLANK_DELAY_POINTS: u32[src]

The default number of points inserted for the end of each blank segment.

pub const DEFAULT_RADIANS_PER_POINT: f32[src]

The default radians per point of delay to reduce corner inertia.

pub fn start() -> InterpolationConfigBuilder[src]

Start building a new InterpolationConfig.

Trait Implementations

impl PartialEq<InterpolationConfig> for InterpolationConfig[src]

impl Clone for InterpolationConfig[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for InterpolationConfig[src]

impl Debug for InterpolationConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]