#include <HxRgbXYZ.h>
Public Types | |
typedef ValDoubleT | ArithTypeDouble |
The "double" arithtype. More... | |
Public Methods | |
HxRgbXYZ (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 : "XYZ". More... |
pixV is XYZ color.
|
The "double" arithtype.
|
|
Constructor : empty.
00030 {} |
|
Actual operation for the "standard" arithtype.
00034 { 00035 return HxColRGB2int( 00036 HxColXYZ2RGB((HxVec3Double) pixV)); 00037 } |
|
Actual operation for the "double" arithtype.
00041 { 00042 return HxColRGB2int( 00043 HxColXYZ2RGB((HxVec3Double) pixV)); 00044 } |
|
The name : "XYZ".
00048 { return HxString("XYZ"); } |