Enum gnuplot::ContourStyle [−][src]
Expand description
Specifies how the contours are drawn
Variants
Draw lines between points of equal value
Cubic(u32)
Draw somewhat smoother curves between points with equal value.
The argument specifies the number of points to use to approximate the curve for the final drawing step (clamped to range from 2 to 100).
Draw an even smoother curve, this time approximating the locations of points with equal value (clamped to range from 2 to 100).
The first argument specifies the number of points to use to approximate the curve for the final drawing step. The second argument specifies the order of the polynomial (clamped to range from 2 to 10).
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for ContourStyle
impl Send for ContourStyle
impl Sync for ContourStyle
impl Unpin for ContourStyle
impl UnwindSafe for ContourStyle
Blanket Implementations
Mutably borrows from an owned value. Read more