COIN-OR::LEMON - Graph Library

Changeset 2159:dd3181a462d0 in lemon-0.x


Ignore:
Timestamp:
07/24/06 10:11:00 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2874
Message:

Minor doc improvement

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/color.h

    r1993 r2159  
    5757  ///Constructor
    5858  Color(double r,double g,double b) :_r(r),_g(g),_b(b) {};
    59   ///Returns the red component
     59  ///Set the red component
    6060  double & red() {return _r;}
    61   ///Returns the red component
     61  ///Return the red component
    6262  const double & red() const {return _r;}
    63   ///Returns the green component
     63  ///Set the green component
    6464  double & green() {return _g;}
    65   ///Returns the green component
     65  ///Return the green component
    6666  const double & green() const {return _g;}
    67   ///Returns the blue component
     67  ///Set the blue component
    6868  double & blue() {return _b;}
    69   ///Returns the blue component
     69  ///Return the blue component
    7070  const double & blue() const {return _b;}
    7171  ///Set the color components
Note: See TracChangeset for help on using the changeset viewer.