pub struct FilledCurve<X, Y1, Y2> {
    pub x: X,
    pub y1: Y1,
    pub y2: Y2,
}
Expand description

Fills the area between two curves

Fields

x: X

X coordinate of the data points of both curves

y1: Y1

Y coordinate of the data points of the first curve

y2: Y2

Y coordinate of the data points of the second curve

Trait Implementations

The properties associated to the plot
Plots some data with some configuration

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 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.