cube_helix 0.1.0

Rust implementation of Dave Green's cubehelix colour scheme.
Documentation

Dave Green's 'cubehelix' colour scheme.
See cubehelix homepage at:
https://www.mrao.cam.ac.uk/~dag/CUBEHELIX/
Calculation from:
http://astron-soc.in/bulletin/11June/289392011.pdf

Examples

use cube_helix::CubeHelix;
# fn main() {
// Get default values
let ch: CubeHelix = Default::default();
// Returns color white: (255,255,255)
let colors = ch.get_color(1.0);
# }