#include <HxRgbDirect.h>
Public Types | |
typedef ValDoubleT | ArithTypeDouble |
The "double" arithtype. More... | |
Public Methods | |
HxRgbDirect (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 : "Direct". More... |
pixV is RGB value in the range 0-255. If not, pixV is clipped.
|
The "double" arithtype.
|
|
Constructor : empty.
00030 {} |
|
Actual operation for the "standard" arithtype.
00034 { return HxColRGB2int((HxVec3Int) pixV); } |
|
Actual operation for the "double" arithtype.
00038 { return HxColRGB2int((HxVec3Double) pixV); } |
|
The name : "Direct".
00042 { return HxString("Direct"); } |