16#include <unordered_map>
20RPalette::RPalette(
bool interpolate,
bool knownNormalized,
const std::vector<RPalette::OrdinalAndColor> &
points)
21 : fColors(
points), fInterpolate(interpolate), fNormalized(knownNormalized)
24 throw std::runtime_error(
"Must have at least two points to build a palette!");
28 if (!knownNormalized) {
30 double high =
fColors.back().fOrdinal;
31 double low =
fColors.front().fOrdinal;
32 double prec = (high - low) * 1
E-6;
34 auto reasonablyEqual = [&](
double val,
double expected) ->
bool {
return std::fabs(val - expected) < prec; };
35 fNormalized = reasonablyEqual(low, 0.) && reasonablyEqual(high, 1.);
40static std::vector<RPalette::OrdinalAndColor> AddOrdinals(
const std::vector<RColor> &
points)
42 std::vector<RPalette::OrdinalAndColor> ret(
points.size());
44 return {1. / (
points.size() - 1) * (&col -
points.data()), col};
46 std::transform(
points.begin(),
points.end(), ret.begin(), addOneOrdinal);
60 auto iColor = std::lower_bound(
fColors.begin(),
fColors.end(), ordinal);
64 if (iColor !=
fColors.begin() && (iColor - 1)->fOrdinal - ordinal < ordinal - iColor->fOrdinal)
65 return (iColor - 1)->fColor;
66 return iColor->fColor;
72using GlobalPalettes_t = std::unordered_map<std::string, RPalette>;
73static GlobalPalettes_t CreateDefaultPalettes()
81static GlobalPalettes_t &GetGlobalPalettes()
83 static GlobalPalettes_t globalPalettes = CreateDefaultPalettes();
84 return globalPalettes;
90 GetGlobalPalettes()[std::string(
name)] = palette;
95 static const RPalette sNoPaletteWithThatName;
96 auto iGlobalPalette = GetGlobalPalettes().find(std::string(
name));
97 if (iGlobalPalette == GetGlobalPalettes().end())
98 return sNoPaletteWithThatName;
99 return iGlobalPalette->second;
#define R__ERROR_HERE(GROUP)
static constexpr RGB_t kRed
static constexpr RGB_t kWhite
static constexpr RGB_t kBlack
static constexpr RGB_t kBlue
static void RegisterPalette(std::string_view name, const RPalette &palette)
Register a palette in the set of global palettes, making it available to GetPalette().
RColor GetColor(double ordinal)
Get the color associated with the ordinal value.
std::vector< OrdinalAndColor > fColors
Palette colors: the color points and their ordinal value.
bool fInterpolate
Whether to interpolate between the colors (in contrast to picking one of fColors).
bool fNormalized
Whether the palette's ordinal numbers are normalized.
static const RPalette & GetPalette(std::string_view name)
Get a global palette by name.
basic_string_view< char > string_view
VecExpr< UnaryOp< Fabs< T >, VecExpr< A, T, D >, T >, T, D > fabs(const VecExpr< A, T, D > &rhs)
constexpr Double_t E()
Base of natural log:
An ordinal value and its associated color.