CB-PuRd.h
Go to the documentation of this file.
1/**
2 * This file was automatically created with "create_c++_header.sh".
3 * Do not edit manually.
4 */
5#pragma once
6#include "../../colormap.h"
7
8namespace colormap
9{
10 namespace IDL
11 {
12
13 class CBPuRd : public Colormap
14 {
15 private:
16 class Wrapper : public WrapperBase
17 {
18 public:
19#ifdef float
20#error "TODO"
21#endif
22#define float local_real_t
23#include "../../../../shaders/glsl/IDL_CB-PuRd.frag"
24#undef float
25 };
26
27 public:
28 Color
29 getColor(double x) const override
30 {
31 Wrapper w;
32 vec4 c = w.colormap(x);
33 Color result;
34 result.r = std::max(0.0, std::min(1.0, c.r));
35 result.g = std::max(0.0, std::min(1.0, c.g));
36 result.b = std::max(0.0, std::min(1.0, c.b));
37 result.a = std::max(0.0, std::min(1.0, c.a));
38 return result;
39 }
40
41 std::string
42 getTitle() const override
43 {
44 return std::string("CB-PuRd");
45 }
46
47 std::string
48 getCategory() const override
49 {
50 return std::string("IDL");
51 }
52
53 std::string
54 getSource() const override
55 {
56 return std::string(
57 "float colormap_red(float x) {\n"
58 " if (x < 25.0 / 254.0) {\n"
59 " return -1.41567647058826E+02 * x + 2.46492647058824E+02;\n"
60 " } else if (x < 0.3715468440779919) {\n"
61 " return (1.64817020395145E+02 * x - 2.01032852327719E+02) * x + "
62 "2.52820173539371E+02;\n"
63 " } else if (x < 0.6232413065898157) {\n"
64 " return (((2.61012828741073E+04 * x - 5.18905872811356E+04) * x + "
65 "3.78968358931486E+04) * x - 1.19124127524292E+04) * x + "
66 "1.55945779375675E+03;\n"
67 " } else if (x < 0.7481208809057023) {\n"
68 " return -2.02469919786095E+02 * x + 3.57739416221033E+02;\n"
69 " } else {\n"
70 " return -4.08324020737294E+02 * x + 5.11743167562695E+02;\n"
71 " }\n"
72 "}\n"
73 "\n"
74 "float colormap_green(float x) {\n"
75 " if (x < 0.1303350956955242) {\n"
76 " return -1.59734759358287E+02 * x + 2.44376470588235E+02;\n"
77 " } else if (x < 0.6227215280200861) {\n"
78 " return (((1.21347373400442E+03 * x - 2.42854832541048E+03) * x + "
79 "1.42039752537243E+03) * x - 6.27806679597789E+02) * x + "
80 "2.86280758506240E+02;\n"
81 " } else {\n"
82 " return (1.61877993987291E+02 * x - 4.06294499392671E+02) * x + "
83 "2.32401278080262E+02;\n"
84 " }\n"
85 "}\n"
86 "\n"
87 "float colormap_blue(float x) {\n"
88 " if (x < 0.7508644163608551) {\n"
89 " return ((((2.96852143551409E+03 * x - 6.12155011029541E+03) * x + "
90 "4.21719423212110E+03) * x - 1.29520280960574E+03) * x + 2.78723913454450E+01) "
91 "* x + 2.47133504519275E+02;\n"
92 " } else {\n"
93 " return ((-6.55064010825706E+02 * x + 1.23635622822904E+03) * x - "
94 "8.68481725874416E+02) * x + 3.18158180572088E+02;\n"
95 " }\n"
96 "}\n"
97 "\n"
98 "vec4 colormap(float x) {\n"
99 " float r = clamp(colormap_red(x) / 255.0, 0.0, 1.0);\n"
100 " float g = clamp(colormap_green(x) / 255.0, 0.0, 1.0);\n"
101 " float b = clamp(colormap_blue(x) / 255.0, 0.0, 1.0);\n"
102 " return vec4(r, g, b, 1.0);\n"
103 "}\n");
104 }
105 };
106
107 } // namespace IDL
108} // namespace colormap
constexpr T c
std::string getCategory() const override
Definition CB-PuRd.h:48
std::string getSource() const override
Definition CB-PuRd.h:54
Color getColor(double x) const override
Definition CB-PuRd.h:29
std::string getTitle() const override
Definition CB-PuRd.h:42
uint32_t Color
RGBA color.
Definition color.h:8
This file offers overloads of toIce() and fromIce() functions for STL container types.
This file was automatically created with "create_c++_header.sh".
Definition colormap.h:10