lemon/color.h
changeset 2172 4b25e7003868
parent 2159 dd3181a462d0
child 2174 f9e43b5cc617
     1.1 --- a/lemon/color.h	Thu Aug 10 10:11:07 2006 +0000
     1.2 +++ b/lemon/color.h	Thu Aug 10 10:18:04 2006 +0000
     1.3 @@ -81,7 +81,7 @@
     1.4  ///This is a true \ref concept::ReferenceMap "reference map", so you can also
     1.5  ///change the actual colors.
     1.6  
     1.7 -class ColorSet : public MapBase<int,Color>
     1.8 +class Palette : public MapBase<int,Color>
     1.9  {
    1.10    std::vector<Color> colors;
    1.11  public:
    1.12 @@ -96,7 +96,7 @@
    1.13    ///If \c num is less then 26/27 then the default color list is cut. Otherwise
    1.14    ///the color list is filled repeatedly with the default color list.
    1.15    ///(The colors can be changed later on.)
    1.16 -  ColorSet(bool have_white=false,int num=0)
    1.17 +  Palette(bool have_white=false,int num=0)
    1.18    {
    1.19      do {
    1.20        if(have_white) colors.push_back(Color(1,1,1));