#include <HxRgbLuv.h>
Public Types | |
typedef ValDoubleT | ArithTypeDouble |
The "double" arithtype. More... | |
Public Methods | |
HxRgbLuv (HxTagList &) | |
Constructor : empty. More... | |
int | doIt (const ValT &pixV) |
Actual operation for the "standard" arithtype. More... | |
int | doItDouble (const ValDoubleT &pixV) |
Actual operation for the "double" arithtype. More... | |
Static Public Methods | |
HxString | className () |
The name : "Luv". More... |
pixV is Luv color.
|
The "double" arithtype.
|
|
Constructor : empty.
00030 {} |
|
Actual operation for the "standard" arithtype.
00034 { 00035 return HxColRGB2int(HxColXYZ2RGB( 00036 HxColLuv2XYZ((HxVec3Double) pixV))); 00037 } |
|
Actual operation for the "double" arithtype.
00041 { 00042 return HxColRGB2int(HxColXYZ2RGB( 00043 HxColLuv2XYZ((HxVec3Double) pixV))); 00044 } |
|
The name : "Luv".
00048 { return HxString("Luv"); } |