X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=WCudaMSE%2FBilatTools_Cuda_Image%2Fsrc%2Fcore%2FcudaImageTools%2FColorRGB_01.h;fp=WCudaMSE%2FBilatTools_Cuda_Image%2Fsrc%2Fcore%2FcudaImageTools%2FColorRGB_01.h;h=bdf1c9d22fd6bf883bd7f5270bf95e76596f92e1;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/BilatTools_Cuda_Image/src/core/cudaImageTools/ColorRGB_01.h b/WCudaMSE/BilatTools_Cuda_Image/src/core/cudaImageTools/ColorRGB_01.h new file mode 100755 index 0000000..bdf1c9d --- /dev/null +++ b/WCudaMSE/BilatTools_Cuda_Image/src/core/cudaImageTools/ColorRGB_01.h @@ -0,0 +1,53 @@ +#ifndef COLOR_RGB_01_H_ +#define COLOR_RGB_01_H_ + +/*----------------------------------------------------------------------*\ + |* Declaration *| + \*---------------------------------------------------------------------*/ + +/*--------------------------------------*\ + |* Public *| + \*-------------------------------------*/ + +class ColorRGB_01 + { + /*--------------------------------------*\ + |* Constructor *| + \*-------------------------------------*/ + + public: + + ColorRGB_01(float r, float g, float b) + { + this->r = r; + this->g = g; + this->b = b; + } + + virtual ~ColorRGB_01() + { + // rien + } + + /*--------------------------------------*\ + |* Methodes *| + \*-------------------------------------*/ + + /*--------------------------------------*\ + |* Attributs *| + \*-------------------------------------*/ + + public: + + float r; + float g; + float b; + + }; + +#endif + +/*----------------------------------------------------------------------*\ + |* End *| + \*---------------------------------------------------------------------*/ +