Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / BilatTools_Cuda_Image / src / core / cudaImageTools / ColorRGB_01.h
1 #ifndef COLOR_RGB_01_H_
2 #define COLOR_RGB_01_H_
3
4 /*----------------------------------------------------------------------*\
5 |* Declaration *|
6 \*---------------------------------------------------------------------*/
7
8 /*--------------------------------------*\
9 |* Public *|
10 \*-------------------------------------*/
11
12 class ColorRGB_01
13 {
14 /*--------------------------------------*\
15 |* Constructor *|
16 \*-------------------------------------*/
17
18 public:
19
20 ColorRGB_01(float r, float g, float b)
21 {
22 this->r = r;
23 this->g = g;
24 this->b = b;
25 }
26
27 virtual ~ColorRGB_01()
28 {
29 // rien
30 }
31
32 /*--------------------------------------*\
33 |* Methodes *|
34 \*-------------------------------------*/
35
36 /*--------------------------------------*\
37 |* Attributs *|
38 \*-------------------------------------*/
39
40 public:
41
42 float r;
43 float g;
44 float b;
45
46 };
47
48 #endif
49
50 /*----------------------------------------------------------------------*\
51 |* End *|
52 \*---------------------------------------------------------------------*/
53