Struct flo_animation::PathCurve [] [src]

pub struct PathCurve(pub PathPoint, pub PathElement);

A start point and a following element describes a bezier curve

Trait Implementations

impl Copy for PathCurve
[src]

impl Clone for PathCurve
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl BezierCurve for PathCurve
[src]

A point and an element form a bezier curve (ie, a start point and the following element)

[src]

Creates a new bezier curve of the same type from some points Read more

[src]

The start point of this curve Read more

[src]

The end point of this curve Read more

[src]

The control points in this curve Read more

[src]

Reverses the direction of this curve Read more

[src]

Given a value t from 0 to 1, returns a point on this curve Read more

[src]

Given a value t from 0 to 1, finds a point on this curve and subdivides it, returning the two resulting curves Read more

[src]

Computes the bounds of this bezier curve Read more

[src]

Finds the t values where this curve has extremities Read more

[src]

Generates a curve by attempting to find a best fit against a set of points Read more

[src]

Attempts to estimate the length of this curve Read more

Auto Trait Implementations

impl Send for PathCurve

impl Sync for PathCurve