Enum gnuplot::ContourStyle[][src]

pub enum ContourStyle {
    Linear,
    Cubic(u32),
    Spline(u32u32),
}

Specifies how the contours are drawn

Variants

Draw lines between points of equal value

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

impl Copy for ContourStyle
[src]

impl Clone for ContourStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations