COIN-OR::LEMON - Graph Library

Changeset 2214:a886e48e0d91 in lemon-0.x for lemon/dim2.h


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

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.