pub enum ContourStyle {
Linear,
Cubic(u32),
Spline(u32, u32),
}Expand description
Specifies how the contours are drawn
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).