lemon/dim2.h
changeset 313 64f8f7cc6168
parent 253 dbe309b5e855
child 314 2cc60866a0c9
     1.1 --- a/lemon/dim2.h	Wed Oct 08 17:05:01 2008 +0100
     1.2 +++ b/lemon/dim2.h	Thu Oct 09 10:09:44 2008 +0200
     1.3 @@ -259,10 +259,10 @@
     1.4  
     1.5  
     1.6  
     1.7 -  /// Bounding box of plain vectors (\ref Point points).
     1.8 +  /// Bounding box of plain vectors (points).
     1.9  
    1.10    /// A class to calculate or store the bounding box of plain vectors
    1.11 -  /// (\ref Point points).
    1.12 +  /// (\ref Point "points").
    1.13    template<typename T>
    1.14    class Box {
    1.15        Point<T> _bottom_left, _top_right;
    1.16 @@ -573,11 +573,10 @@
    1.17      return os;
    1.18    }
    1.19  
    1.20 -  ///Map of x-coordinates of a \ref Point "Point"-map
    1.21 +  ///Map of x-coordinates of a <tt>Point</tt>-map
    1.22  
    1.23 +  ///Map of x-coordinates of a \ref Point "Point"-map.
    1.24    ///\ingroup maps
    1.25 -  ///Map of x-coordinates of a \ref Point "Point"-map.
    1.26 -  ///
    1.27    template<class M>
    1.28    class XMap
    1.29    {
    1.30 @@ -592,9 +591,9 @@
    1.31      void set(Key k,Value v) {_map.set(k,typename M::Value(v,_map[k].y));}
    1.32    };
    1.33  
    1.34 -  ///Returns an \ref XMap class
    1.35 +  ///Returns an XMap class
    1.36  
    1.37 -  ///This function just returns an \ref XMap class.
    1.38 +  ///This function just returns an XMap class.
    1.39    ///
    1.40    ///\ingroup maps
    1.41    ///\relates XMap
    1.42 @@ -610,11 +609,10 @@
    1.43      return XMap<M>(m);
    1.44    }
    1.45  
    1.46 -  ///Constant (read only) version of \ref XMap
    1.47 +  ///Constant (read only) version of XMap
    1.48  
    1.49 +  ///Constant (read only) version of XMap.
    1.50    ///\ingroup maps
    1.51 -  ///Constant (read only) version of \ref XMap
    1.52 -  ///
    1.53    template<class M>
    1.54    class ConstXMap
    1.55    {
    1.56 @@ -628,9 +626,9 @@
    1.57      Value operator[](Key k) const {return _map[k].x;}
    1.58    };
    1.59  
    1.60 -  ///Returns a \ref ConstXMap class
    1.61 +  ///Returns a ConstXMap class
    1.62  
    1.63 -  ///This function just returns a \ref ConstXMap class.
    1.64 +  ///This function just returns a ConstXMap class.
    1.65    ///
    1.66    ///\ingroup maps
    1.67    ///\relates ConstXMap
    1.68 @@ -640,11 +638,10 @@
    1.69      return ConstXMap<M>(m);
    1.70    }
    1.71  
    1.72 -  ///Map of y-coordinates of a \ref Point "Point"-map
    1.73 +  ///Map of y-coordinates of a <tt>Point</tt>-map
    1.74  
    1.75 +  ///Map of y-coordinates of a \ref Point "Point"-map.
    1.76    ///\ingroup maps
    1.77 -  ///Map of y-coordinates of a \ref Point "Point"-map.
    1.78 -  ///
    1.79    template<class M>
    1.80    class YMap
    1.81    {
    1.82 @@ -659,9 +656,9 @@
    1.83      void set(Key k,Value v) {_map.set(k,typename M::Value(_map[k].x,v));}
    1.84    };
    1.85  
    1.86 -  ///Returns a \ref YMap class
    1.87 +  ///Returns a YMap class
    1.88  
    1.89 -  ///This function just returns a \ref YMap class.
    1.90 +  ///This function just returns a YMap class.
    1.91    ///
    1.92    ///\ingroup maps
    1.93    ///\relates YMap
    1.94 @@ -677,11 +674,10 @@
    1.95      return YMap<M>(m);
    1.96    }
    1.97  
    1.98 -  ///Constant (read only) version of \ref YMap
    1.99 +  ///Constant (read only) version of YMap
   1.100  
   1.101 +  ///Constant (read only) version of YMap.
   1.102    ///\ingroup maps
   1.103 -  ///Constant (read only) version of \ref YMap
   1.104 -  ///
   1.105    template<class M>
   1.106    class ConstYMap
   1.107    {
   1.108 @@ -695,9 +691,9 @@
   1.109      Value operator[](Key k) const {return _map[k].y;}
   1.110    };
   1.111  
   1.112 -  ///Returns a \ref ConstYMap class
   1.113 +  ///Returns a ConstYMap class
   1.114  
   1.115 -  ///This function just returns a \ref ConstYMap class.
   1.116 +  ///This function just returns a ConstYMap class.
   1.117    ///
   1.118    ///\ingroup maps
   1.119    ///\relates ConstYMap
   1.120 @@ -708,8 +704,7 @@
   1.121    }
   1.122  
   1.123  
   1.124 -  ///\brief Map of the \ref Point::normSquare() "normSquare()"
   1.125 -  ///of a \ref Point "Point"-map
   1.126 +  ///\brief Map of the normSquare() of a <tt>Point</tt>-map
   1.127    ///
   1.128    ///Map of the \ref Point::normSquare() "normSquare()"
   1.129    ///of a \ref Point "Point"-map.
   1.130 @@ -727,9 +722,9 @@
   1.131      Value operator[](Key k) const {return _map[k].normSquare();}
   1.132    };
   1.133  
   1.134 -  ///Returns a \ref NormSquareMap class
   1.135 +  ///Returns a NormSquareMap class
   1.136  
   1.137 -  ///This function just returns a \ref NormSquareMap class.
   1.138 +  ///This function just returns a NormSquareMap class.
   1.139    ///
   1.140    ///\ingroup maps
   1.141    ///\relates NormSquareMap