diff -r 0b620ff10e7c -r dd3181a462d0 lemon/color.h --- a/lemon/color.h Thu Jul 20 14:12:01 2006 +0000 +++ b/lemon/color.h Mon Jul 24 08:11:00 2006 +0000 @@ -56,17 +56,17 @@ Color() {} ///Constructor Color(double r,double g,double b) :_r(r),_g(g),_b(b) {}; - ///Returns the red component + ///Set the red component double & red() {return _r;} - ///Returns the red component + ///Return the red component const double & red() const {return _r;} - ///Returns the green component + ///Set the green component double & green() {return _g;} - ///Returns the green component + ///Return the green component const double & green() const {return _g;} - ///Returns the blue component + ///Set the blue component double & blue() {return _b;} - ///Returns the blue component + ///Return the blue component const double & blue() const {return _b;} ///Set the color components void set(double r,double g,double b) { _r=r;_g=g;_b=b; };