pub struct BezierCurve { /* private fields */ }
Expand description

User-defined cubic Bézier curve

Implementations

Calculates a new cubic Bézier curve. Mimics transition-timing-function: cubic-bezier as defined here

Arguments
  • p1 - The first of the two control points
  • p2 - The second of the two control points

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

For an X position on the curve, calculate the Y position. 0.0-1.0 is start and end on both axes but values can go out of bounds. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.