00001 #ifndef Impala_Core_Array_ProjectParameterizedColor_h
00002 #define Impala_Core_Array_ProjectParameterizedColor_h
00003
00004 #include "Core/Array/Pattern/PatUnaryPixOp.h"
00005 #include "Core/Array/Trait/UpoParameterizedColor.h"
00006
00007 namespace Impala
00008 {
00009 namespace Core
00010 {
00011 namespace Array
00012 {
00013
00014
00015 inline void
00016 ProjectParameterizedColor(Array2dScalarReal64*& dst, Array2dVec3Real64* src,
00017 Real64 a, Real64 b, Real64 c, Real64 d, Real64 e, Real64 f, Real64 g)
00018 {
00019 Trait::UpoParameterizedColorPtr upo(a, b, c, d, e, f, g);
00020 Pattern::PatUnaryPixOp(dst, src, upo);
00021 }
00022
00023 }
00024 }
00025 }
00026
00027 #endif