Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00031
00032 #pragma once
00033
00034 #include "color_hsv.h"
00035
00036
00037
00042 class CL_ColorHSVi : public CL_ColorHSVx<int>
00043 {
00044 public:
00045 CL_ColorHSVi() : CL_ColorHSVx<int>() {}
00046 CL_ColorHSVi(int h, int s, int v, int a) : CL_ColorHSVx<int>(h,s,v,a) {}
00047 CL_ColorHSVi(const CL_ColorHSVx<int> ©) : CL_ColorHSVx<int>(copy) {}
00048 CL_ColorHSVi(const CL_Color &color) : CL_ColorHSVx<int>(color) {}
00049 CL_ColorHSVi(const CL_Colorf &color): CL_ColorHSVx<int>(color) {}
00050 CL_ColorHSVi(const CL_Colord &color) : CL_ColorHSVx<int>(color) {}
00051
00052 operator CL_Color();
00053
00054 };
00055
00060 class CL_ColorHSVf : public CL_ColorHSVx<float>
00061 {
00062 public:
00063 CL_ColorHSVf() : CL_ColorHSVx<float>() {}
00064 CL_ColorHSVf(float h, float s, float v, float a) : CL_ColorHSVx<float>(h,s,v,a) {}
00065 CL_ColorHSVf(const CL_ColorHSVx<float> ©) : CL_ColorHSVx<float>(copy) {}
00066 CL_ColorHSVf(const CL_Color &color) : CL_ColorHSVx<float>(color) {}
00067 CL_ColorHSVf(const CL_Colorf &color): CL_ColorHSVx<float>(color) {}
00068 CL_ColorHSVf(const CL_Colord &color) : CL_ColorHSVx<float>(color) {}
00069
00070 operator CL_Colorf();
00071
00072 };
00073
00078 class CL_ColorHSVd : public CL_ColorHSVx<double>
00079 {
00080 public:
00081 CL_ColorHSVd() : CL_ColorHSVx<double>() {}
00082 CL_ColorHSVd(double h, double s, double v, double a) : CL_ColorHSVx<double>(h,s,v,a) {}
00083 CL_ColorHSVd(const CL_ColorHSVx<double> ©) : CL_ColorHSVx<double>(copy) {}
00084 CL_ColorHSVd(const CL_Color &color) : CL_ColorHSVx<double>(color) {}
00085 CL_ColorHSVd(const CL_Colorf &color): CL_ColorHSVx<double>(color) {}
00086 CL_ColorHSVd(const CL_Colord &color) : CL_ColorHSVx<double>(color) {}
00087
00088 operator CL_Colord();
00089
00090 };
00091