[][src]Struct lasy::InterpolationConfig

#[repr(C)]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.

By default, this value is InterpolationConfig::DEFAULT_DISTANCE_PER_POINT.

blank_delay_points: u32

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

By default, this value is InterpolationConfig::DEFAULT_BLANK_DELAY_POINTS.

radians_per_point: f32

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

By default, this value is InterpolationConfig::DEFAULT_RADIANS_PER_POINT.

Implementations

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.

Trait Implementations

impl Clone for InterpolationConfig[src]

impl Debug for InterpolationConfig[src]

impl Default for InterpolationConfig[src]

impl PartialEq<InterpolationConfig> for InterpolationConfig[src]

impl StructuralPartialEq for InterpolationConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.