supernova.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 
8 namespace colormap
9 {
10  namespace transform
11  {
12 
13  class Supernova : 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/transform_supernova.frag"
24 #undef float
25  };
26 
27  public:
28  Color getColor(double x) const override
29  {
30  Wrapper w;
31  vec4 c = w.colormap(x);
32  Color result;
33  result.r = std::max(0.0, std::min(1.0, c.r));
34  result.g = std::max(0.0, std::min(1.0, c.g));
35  result.b = std::max(0.0, std::min(1.0, c.b));
36  result.a = std::max(0.0, std::min(1.0, c.a));
37  return result;
38  }
39 
40  std::string getTitle() const override
41  {
42  return std::string("supernova");
43  }
44 
45  std::string getCategory() const override
46  {
47  return std::string("transform");
48  }
49 
50  std::string getSource() const override
51  {
52  return std::string(
53  "float colormap_f1(float x) {\n"
54  " return (0.3647 * x + 164.02) * x + 154.21;\n"
55  "}\n"
56  "\n"
57  "float colormap_f2(float x) {\n"
58  " return (126.68 * x + 114.35) * x + 0.1551;\n"
59  "}\n"
60  "\n"
61  "float colormap_red(float x) {\n"
62  " if (x < 0.0) {\n"
63  " return 0.0;\n"
64  " } else if (x < 0.136721748106749) {\n"
65  " return colormap_f2(x) / 255.0;\n"
66  " } else if (x < 0.23422409711017) {\n"
67  " return (1789.6 * x - 226.52) / 255.0;\n"
68  " } else if (x < 0.498842730309711) {\n"
69  " return colormap_f1(x) / 255.0;\n"
70  " } else if (x < 0.549121259378134) {\n"
71  " return (-654.951781800243 * x + 562.838873112072) / 255.0;\n"
72  " } else if (x < 1.0) {\n"
73  " return ((3.6897 * x + 11.125) * x + 223.15) / 255.0;\n"
74  " } else {\n"
75  " return 237.0 / 255.0;\n"
76  " }\n"
77  "}\n"
78  "\n"
79  "float colormap_green(float x) {\n"
80  " if (x < 0.0) {\n"
81  " return 154.0 / 255.0;\n"
82  " } else if (x < 3.888853260731947e-2) {\n"
83  " return colormap_f1(x) / 255.0;\n"
84  " } else if (x < 0.136721748106749e0) {\n"
85  " return (-1455.86353067466 * x + 217.205447330541) / 255.0;\n"
86  " } else if (x < 0.330799131955394) {\n"
87  " return colormap_f2(x) / 255.0;\n"
88  " } else if (x < 0.498842730309711) {\n"
89  " return (1096.6 * x - 310.91) / 255.0;\n"
90  " } else if (x < 0.549121259378134) {\n"
91  " return colormap_f1(x) / 255.0;\n"
92  " } else {\n"
93  " return 244.0 / 255.0;\n"
94  " }\n"
95  "}\n"
96  "\n"
97  "float colormap_blue(float x) {\n"
98  " if (x < 0.0) {\n"
99  " return 93.0 / 255.0;\n"
100  " } else if (x < 3.888853260731947e-2) {\n"
101  " return (1734.6 * x + 93.133) / 255.0;\n"
102  " } else if (x < 0.234224097110170) {\n"
103  " return colormap_f1(x) / 255.0;\n"
104  " } else if (x < 0.330799131955394) {\n"
105  " return (-1457.96598791534 * x + 534.138211325166) / 255.0;\n"
106  " } else if (x < 0.549121259378134) {\n"
107  " return colormap_f2(x) / 255.0;\n"
108  " } else if (x < 1.0) {\n"
109  " return ((3.8931 * x + 176.32) * x + 3.1505) / 255.0;\n"
110  " } else {\n"
111  " return 183.0 / 255.0;\n"
112  " }\n"
113  "}\n"
114  "\n"
115  "vec4 colormap(float x) {\n"
116  " return vec4(colormap_red(x), colormap_green(x), colormap_blue(x), 1.0);\n"
117  "}\n"
118  );
119  }
120  };
121 
122  } // namespace transform
123 } // namespace colormap
colormap::Colormap
Definition: colormap.h:17
colormap::Color::g
double g
Definition: colormap.h:14
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:43
colormap::Colormap::vec4
Definition: colormap.h:32
colormap::Color::a
double a
Definition: colormap.h:14
colormap::transform::Supernova::getColor
Color getColor(double x) const override
Definition: supernova.h:28
colormap::Color::b
double b
Definition: colormap.h:14
max
T max(T t1, T t2)
Definition: gdiam.h:48
colormap::Color
Definition: colormap.h:12
colormap::transform::Supernova::getCategory
std::string getCategory() const override
Definition: supernova.h:45
colormap
This file was automatically created with "create_c++_header.sh".
Definition: colormap.h:9
armarx::transform
auto transform(const Container< InputT, Alloc > &in, OutputT(*func)(InputT const &)) -> Container< OutputT, typename std::allocator_traits< Alloc >::template rebind_alloc< OutputT > >
Convenience function (with less typing) to transform a container of type InputT into the same contain...
Definition: algorithm.h:315
colormap::Color::r
double r
Definition: colormap.h:14
colormap::transform::Supernova
Definition: supernova.h:13
colormap::Colormap::WrapperBase
Definition: colormap.h:144
colormap::transform::Supernova::getSource
std::string getSource() const override
Definition: supernova.h:50
min
T min(T t1, T t2)
Definition: gdiam.h:42
colormap::transform::Supernova::getTitle
std::string getTitle() const override
Definition: supernova.h:40