00001 #ifndef __FIBER_FIELD_COLOR_HPP
00002 #define __FIBER_FIELD_COLOR_HPP
00003
00004 #include "FiberType.hpp"
00005 #include <eagle/ColorSpace.hpp>
00006
00007 namespace Fiber
00008 {
00009
00010 inline unsigned char clamp_int_to_byte(int i)
00011 {
00012 if (i<0) return 0;
00013 if (i>255) return 255;
00014 return i;
00015 }
00016
00017
00018 inline unsigned char clamp_flt_to_byte(double d)
00019 {
00020 if (d<=0) return 0;
00021 if (d>=1.0) return 255;
00022 return (int)(d*255);
00023 }
00024
00025
00026 typedef Eagle::rgb_t rgb;
00027 typedef Eagle::rgba_t rgba;
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081 struct bgr
00082 {
00083 unsigned b,g,r;
00084 };
00085
00086
00087 typedef Eagle::rgb16_t rgb16;
00088 typedef Eagle::rgb_float_t rgb_real;
00089 typedef Eagle::rgba_float_t rgba_real;
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126 inline rgb_real operator*(const rgb&c, double d)
00127 {
00128 return rgb_real(c[0]*d, c[1]*d, c[2]*d);
00129 }
00130
00131 inline rgb_real operator*(const rgb_real&l, const rgb_real&r)
00132 {
00133 return rgb_real(l[0]*r[0], l[1]*r[1], l[2]*r[2]);
00134 }
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149 }
00150
00151 namespace Eagle
00152 {
00153
00154
00155 }
00156
00157
00158 #endif // __FIBER_FIELD_COLOR_HPP