COIN-OR::LEMON - Graph Library

Changeset 133:d76e2ff9c70d in lemon-1.2 for lemon/color.h


Ignore:
Timestamp:
04/13/08 09:20:43 (16 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Several doc improvements + new default parameter values

  • * *

Several minor improvements in graph_to_eps.h

  • * *

Several minor improvements in graph_to_eps.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/color.h

    r129 r133  
    112112
    113113    ///Constructor
     114    ///\param have_white indicates whether white is amongst the
     115    ///provided initial colors (\c true) or not (\c false). If it is true,
     116    ///white will be assigned to \c 0.
    114117    ///\param num the number of the allocated colors. If it is \c -1,
    115     ///the default color configuration is set up (26 color plus the
     118    ///the default color configuration is set up (26 color plus optionaly the
    116119    ///white).  If \c num is less then 26/27 then the default color
    117120    ///list is cut. Otherwise the color list is filled repeatedly with
    118121    ///the default color list.  (The colors can be changed later on.)
    119     ///\param have_white indicates whether white is amongst the
    120     ///provided color (\c true) or not (\c false). If it is true,
    121     ///white will be assigned to \c 0.
    122122    Palette(bool have_white=false,int num=-1)
    123123    {
     
    174174      colors[i%colors.size()]=c;
    175175    }
    176     ///\e
     176    ///Add a new color to the end of the color list.
    177177    void add(const Color &c)
    178178    {
     
    186186  };
    187187
    188   ///Returns a visible distinct \ref Color
     188  ///Returns a visibly distinct \ref Color
    189189
    190190  ///Returns a \ref Color which is as different from the given parameter
Note: See TracChangeset for help on using the changeset viewer.