Enum gnuplot::PaletteType[][src]

pub enum PaletteType {
    Gray(f32),
    Formula(i32i32i32),
    CubeHelix(f32f32f32f32),
}

Specifies what sort of palette to use

Variants

Use a gray palette with a specified gamma

Use a palette with that uses a predefined formula for each color component. Each formula is identified by an integer between [-36, 36]. See gnuplot documentation, or use the pre-defined constants.

Use a cube helix palette, with a certain start (in radians), cycles, saturation and gamma.

Trait Implementations

impl Copy for PaletteType
[src]

impl Clone for PaletteType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for PaletteType

impl Sync for PaletteType