1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Auto-generated by prismatica xtask -- do not edit
//! Moreland colormaps (cool-warm, black body, Kindlmann, and variants).
//!
//! Kenneth Moreland's carefully designed diverging and sequential
//! colormaps, developed for scientific visualization in ParaView
//! and VTK. The cool-warm diverging map is a widely recommended
//! alternative to red-blue schemes.
//!
//! License: Public domain / BSD.
//!
//! Source: <https://www.kennethmoreland.com/color-advice/>
pub use BENT_COOL_WARM;
pub use BLACK_BODY;
pub use EXTENDED_KINDLMANN;
pub use FAST;
pub use KINDLMANN;
pub use SMOOTH_COOL_WARM;
/// All colormaps in the moreland collection.
pub static ALL: & = &;