ether.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 Ether : 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_ether.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("ether");
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_f(float x, float b) {\n"
54  " float x2 = x * x;\n"
55  " return ((-1.89814e5 * x2 + 1.50967e4) * x2 + b) / 255.0;\n"
56  "}\n"
57  "\n"
58  "float colormap_f2(float x, float b) {\n"
59  " float x2 = x * x;\n"
60  " return ((1.88330e5 * x2 - 1.50839e4) * x2 + b) / 255.0;\n"
61  "}\n"
62  "\n"
63  "float colormap_blue(float x) {\n"
64  " if (x < 0.0e0) {\n"
65  " return 246.0 / 255.0;\n"
66  " } else if (x < 0.25) {\n"
67  " return colormap_f(x - 32.0 / 256.0, 65.0);\n"
68  " } else if (x < 130.0 / 256.0) {\n"
69  " return colormap_f2(x - 97.0 / 256.0, 190.0);\n"
70  " } else if (x < 193.0 / 256.0) {\n"
71  " return colormap_f(x - 161.0 / 256.0, 65.0);\n"
72  " } else if (x < 1.0) {\n"
73  " return colormap_f2(x - 226.0 / 256.0, 190.0);\n"
74  " } else {\n"
75  " return 18.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 0.0;\n"
82  " } else if (x < 0.20615790927912) {\n"
83  " return ((((-3.81619e4 * x - 2.94574e3) * x + 2.61347e3) * x - 7.92183e1) * x) / 255.0;\n"
84  " } else if (x < 0.54757171958025) {\n"
85  " return (((((2.65271e5 * x - 4.14808e5) * x + 2.26118e5) * x - 5.16491e4) * x + 5.06893e3) * x - 1.80630e2) / 255.0;\n"
86  " } else if (x < 0.71235558668792) {\n"
87  " return ((((1.77058e5 * x - 4.62571e5) * x + 4.39628e5) * x - 1.80143e5) * x + 2.68555e4) / 255.0;\n"
88  " } else if (x < 1.0) {\n"
89  " float xx = ((((1.70556e5 * x - 6.20429e5) * x + 8.28331e5) * x - 4.80913e5) * x + 1.02608e5);\n"
90  " if (xx > 255.0) {\n"
91  " return (510.0 - xx) / 255.0;\n"
92  " } else {\n"
93  " return xx / 255.0;\n"
94  " }\n"
95  " } else {\n"
96  " return 154.0 / 255.0;\n"
97  " }\n"
98  "}\n"
99  "\n"
100  "float colormap_red(float x) {\n"
101  " if (x < 0.0) {\n"
102  " return 2.0 / 255.0;\n"
103  " } else if (x < 1.0) {\n"
104  " float xx = 2.83088e2 * x + 8.17847e-1;\n"
105  " if (xx > 255.0) {\n"
106  " return (510.0 - xx) / 255.0;\n"
107  " } else {\n"
108  " return xx / 255.0;\n"
109  " }\n"
110  " } else {\n"
111  " return 226.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::transform::Ether::getTitle
std::string getTitle() const override
Definition: ether.h:40
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::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::Ether::getColor
Color getColor(double x) const override
Definition: ether.h:28
colormap::transform::Ether::getSource
std::string getSource() const override
Definition: ether.h:50
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::Colormap::WrapperBase
Definition: colormap.h:144
min
T min(T t1, T t2)
Definition: gdiam.h:42
colormap::transform::Ether
Definition: ether.h:13
colormap::transform::Ether::getCategory
std::string getCategory() const override
Definition: ether.h:45