[][src]Struct scribble_curves::curve::Curve

pub struct Curve {
    pub path: BezPath,
    pub times: Vec<Time>,
    // some fields omitted
}

Fields

path: BezPathtimes: Vec<Time>

Implementations

impl Curve[src]

pub fn new() -> Curve[src]

pub fn line_to(&mut self, p: Point, time: Time)[src]

pub fn move_to(
    &mut self,
    p: Point,
    time: Time,
    style: LineStyle,
    effects: Effects
)
[src]

pub fn append_segment(&mut self, p: BezPath, t: Vec<Time>, data: SegmentData)[src]

pub fn segments<'a>(&'a self) -> impl Iterator<Item = Segment<'a>> + 'a[src]

pub fn smoothed(&self, distance_threshold: f64, angle_threshold: f64) -> Curve[src]

pub fn render(&self, ctx: &mut impl RenderContext, time: Time)[src]

Trait Implementations

impl Clone for Curve[src]

impl Debug for Curve[src]

impl<'a> Deserialize<'a> for Curve[src]

impl Serialize for Curve[src]

Auto Trait Implementations

impl RefUnwindSafe for Curve

impl Send for Curve

impl Sync for Curve

impl Unpin for Curve

impl UnwindSafe for Curve

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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.