COIN-OR::LEMON - Graph Library

Changeset 2214:a886e48e0d91 in lemon-0.x


Ignore:
Timestamp:
09/14/06 20:39:07 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2944
Message:

Doc improvements

Location:
lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/dim2.h

    r2212 r2214  
    456456        return *this;
    457457      }
    458  
    459 //       ///Sums a bounding box and a point
    460 //       BoundingBox operator +(const Point<T>& u){
    461 //         BoundingBox b = *this;
    462 //         return b += u;
    463 //       }
    464 
    465       ///Increments a bounding box with another bounding box
     458   
     459      ///Increments a bounding to contain another bounding box
    466460      BoundingBox& add(const BoundingBox &u){
    467461        if ( !u.empty() ){
     
    472466      }
    473467 
    474       ///Sums two bounding boxes
    475       BoundingBox operator +(const BoundingBox& u){
    476         BoundingBox b = *this;
    477         return b.add(u);
    478       }
    479 
    480 
    481468      ///Intersection of two bounding boxes
    482469      BoundingBox operator &(const BoundingBox& u){
     
    497484
    498485  ///\ingroup maps
     486  ///Map of x-coordinates of a dim2::Point<>-map
    499487  ///
    500488  template<class M>
     
    533521
    534522  ///\ingroup maps
     523  ///Constant (read only) version of \ref XMap
    535524  ///
    536525  template<class M>
     
    562551   
    563552  ///\ingroup maps
     553  ///Map of y-coordinates of a dim2::Point<>-map
    564554  ///
    565555  template<class M>
     
    598588
    599589  ///\ingroup maps
     590  ///Constant (read only) version of \ref YMap
    600591  ///
    601592  template<class M>
     
    625616
    626617
    627   ///Map of the \ref Point::normSquare() "normSquare()" of an \ref Point "Point"-map
    628 
    629   ///Map of the \ref Point::normSquare() "normSquare()" of an \ref Point "Point"-map
    630   ///\ingroup maps
    631   ///
     618    ///\brief Map of the \ref Point::normSquare() "normSquare()"
     619    ///of an \ref Point "Point"-map
     620    ///
     621    ///Map of the \ref Point::normSquare() "normSquare()"
     622    ///of an \ref Point "Point"-map
     623    ///\ingroup maps
     624    ///
    632625  template<class M>
    633626  class NormSquareMap
  • lemon/eps.h

    r2207 r2214  
    206206    ///they
    207207    ///are collected. These operations form a \e path.
    208     ///Then you can \ref stroke(), \ref fill(), \ref eofill(), \ref clip() or
    209     ///\ref eoclip() it.
     208    ///Then you can \ref stroke(), \ref fill(), \ref eoFill(), \ref clip() or
     209    ///\ref eoClip() it.
    210210    ///When drawing, you can also use \ref closePath() to - surprise - close the
    211211    ///current path.
     
    223223
    224224    ///Stroke (draw) a path.
    225     ///\sa collect
     225    ///\sa collect()
    226226    ///
    227227    EpsDrawer &stroke();
     
    229229
    230230    ///Fill a path.
    231     ///\sa collect
     231    ///\sa collect()
    232232    ///
    233233    EpsDrawer &fill();
     
    235235
    236236    ///Even-odd fill a path.
    237     ///\sa collect
     237    ///\sa collect()
    238238    ///
    239239    EpsDrawer &eoFill();
     
    242242    ///This function sets a clipping area. After that, the drawing operations
    243243    ///will affect only this area.
    244     ///\sa collect
     244    ///\sa collect()
    245245    ///
    246246    EpsDrawer &clip();
     
    250250    ///After that, the drawing operations
    251251    ///will affect only this area.
    252     ///\sa collect
     252    ///\sa collect()
    253253    ///
    254254    EpsDrawer &eoClip();
Note: See TracChangeset for help on using the changeset viewer.