diff -r 1e6af6f0843c -r 4e22275a2b52 lemon/color.h --- a/lemon/color.h Fri Jul 04 16:12:31 2008 +0200 +++ b/lemon/color.h Sun Jul 13 16:34:27 2008 +0100 @@ -108,11 +108,11 @@ public: ///Constructor - ///Constructor - ///\param have_white indicates whether white is amongst the + ///Constructor. + ///\param have_white Indicates whether white is among the ///provided initial colors (\c true) or not (\c false). If it is true, ///white will be assigned to \c 0. - ///\param num the number of the allocated colors. If it is \c -1, + ///\param num The number of the allocated colors. If it is \c -1, ///the default color configuration is set up (26 color plus optionaly the ///white). If \c num is less then 26/27 then the default color ///list is cut. Otherwise the color list is filled repeatedly with @@ -153,7 +153,6 @@ colors.push_back(Color(0,.5,1)); colors.push_back(Color(.5,0,1)); } while(int(colors.size())=0) colors.resize(num); } ///\e @@ -171,13 +170,13 @@ { colors[i%colors.size()]=c; } - ///Add a new color to the end of the color list. + ///Adds a new color to the end of the color list. void add(const Color &c) { colors.push_back(c); } - ///Sets the number of the exiting colors. + ///Sets the number of the existing colors. void resize(int s) { colors.resize(s);} ///Returns the number of the existing colors. int size() const { return int(colors.size());}