SpikeStream Library
0.2
|
00001 #ifndef RGBCOLOR_H 00002 #define RGBCOLOR_H 00003 00004 namespace spikestream { 00005 00007 class RGBColor { 00008 public: 00009 //======================= METHODS ======================== 00010 RGBColor(); 00011 RGBColor(float red, float green, float blue); 00012 RGBColor(const RGBColor& rgbColor); 00013 RGBColor& operator=(const RGBColor& rhs); 00014 void set(float red, float green, float blue); 00015 00016 //======================= COLORS ========================= 00017 static RGBColor BLACK; 00018 00019 //====================== VARIABLES ======================= 00020 float red; 00021 float green; 00022 float blue; 00023 }; 00024 00025 } 00026 00027 #endif//RGBCOLOR_H 00028