00001 #ifndef COLOR_H_HEADER_INCLUDED_BDDB0721 00002 #define COLOR_H_HEADER_INCLUDED_BDDB0721 00003 00004 // This class represents a color with red, green, blue, and alpha colors 00005 //##ModelId={89819824-C9B9-4F4E-A499-1A9B59CE87B8} 00006 class Color { 00007 public: 00008 Color(float red, float green, float blue, float alpha = 0.0); 00009 Color(); 00010 float color[4]; 00011 }; 00012 #endif /* COLOR_H_HEADER_INCLUDED_BDDB0721 */
1.4.1