/* Auteur: Nicolas JANEY */ /* nicolas.janey@univ-fcomte.fr */ /* Octobre 2005 */ /* Classe de gestion d'une infomation */ /* de couleur */ #include "ModuleFont.h" #include "Rvba.h" Rvba::Rvba(void) { this->r = 0.0F; this->v = 0.0F; this->b = 0.0F; this->a = 1.0F; } Rvba::Rvba(float r,float v,float b,float a){ this->r = r; this->v = v; this->b = b; this->a = a; } Rvba::Rvba(Rvba *rvba){ this->r = rvba->r; this->v = rvba->v; this->b = rvba->b; this->a = rvba->a; } Rvba::~Rvba(void){ } void Rvba::print(char *format) { simpleBitmapOutput(1,REGULAR8x13,format,r,v,b,a); }