Enum gnuplot::PaletteType [−][src]
pub enum PaletteType { Gray(f32), Formula(i32, i32, i32), CubeHelix(f32, f32, f32, f32), Custom(Vec<(f32, f32, f32, f32)>), }
Expand description
Specifies what sort of palette to use
Variants
Gray(f32)
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.
A custom palette is specified by a sequence of 4-tuples (with at least one element). The first element is the grayscale value that is mapped to the remaining three elements which specify the red, green and blue components of the color. The grayscale values must be non-decreasing. All values must range from 0 to 1.
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 PaletteType
impl Send for PaletteType
impl Sync for PaletteType
impl Unpin for PaletteType
impl UnwindSafe for PaletteType
Blanket Implementations
Mutably borrows from an owned value. Read more