diff -r e57e10a8ea1b -r 64f8f7cc6168 lemon/dim2.h --- a/lemon/dim2.h Wed Oct 08 17:05:01 2008 +0100 +++ b/lemon/dim2.h Thu Oct 09 10:09:44 2008 +0200 @@ -259,10 +259,10 @@ - /// Bounding box of plain vectors (\ref Point points). + /// Bounding box of plain vectors (points). /// A class to calculate or store the bounding box of plain vectors - /// (\ref Point points). + /// (\ref Point "points"). template class Box { Point _bottom_left, _top_right; @@ -573,11 +573,10 @@ return os; } - ///Map of x-coordinates of a \ref Point "Point"-map + ///Map of x-coordinates of a Point-map + ///Map of x-coordinates of a \ref Point "Point"-map. ///\ingroup maps - ///Map of x-coordinates of a \ref Point "Point"-map. - /// template class XMap { @@ -592,9 +591,9 @@ void set(Key k,Value v) {_map.set(k,typename M::Value(v,_map[k].y));} }; - ///Returns an \ref XMap class + ///Returns an XMap class - ///This function just returns an \ref XMap class. + ///This function just returns an XMap class. /// ///\ingroup maps ///\relates XMap @@ -610,11 +609,10 @@ return XMap(m); } - ///Constant (read only) version of \ref XMap + ///Constant (read only) version of XMap + ///Constant (read only) version of XMap. ///\ingroup maps - ///Constant (read only) version of \ref XMap - /// template class ConstXMap { @@ -628,9 +626,9 @@ Value operator[](Key k) const {return _map[k].x;} }; - ///Returns a \ref ConstXMap class + ///Returns a ConstXMap class - ///This function just returns a \ref ConstXMap class. + ///This function just returns a ConstXMap class. /// ///\ingroup maps ///\relates ConstXMap @@ -640,11 +638,10 @@ return ConstXMap(m); } - ///Map of y-coordinates of a \ref Point "Point"-map + ///Map of y-coordinates of a Point-map + ///Map of y-coordinates of a \ref Point "Point"-map. ///\ingroup maps - ///Map of y-coordinates of a \ref Point "Point"-map. - /// template class YMap { @@ -659,9 +656,9 @@ void set(Key k,Value v) {_map.set(k,typename M::Value(_map[k].x,v));} }; - ///Returns a \ref YMap class + ///Returns a YMap class - ///This function just returns a \ref YMap class. + ///This function just returns a YMap class. /// ///\ingroup maps ///\relates YMap @@ -677,11 +674,10 @@ return YMap(m); } - ///Constant (read only) version of \ref YMap + ///Constant (read only) version of YMap + ///Constant (read only) version of YMap. ///\ingroup maps - ///Constant (read only) version of \ref YMap - /// template class ConstYMap { @@ -695,9 +691,9 @@ Value operator[](Key k) const {return _map[k].y;} }; - ///Returns a \ref ConstYMap class + ///Returns a ConstYMap class - ///This function just returns a \ref ConstYMap class. + ///This function just returns a ConstYMap class. /// ///\ingroup maps ///\relates ConstYMap @@ -708,8 +704,7 @@ } - ///\brief Map of the \ref Point::normSquare() "normSquare()" - ///of a \ref Point "Point"-map + ///\brief Map of the normSquare() of a Point-map /// ///Map of the \ref Point::normSquare() "normSquare()" ///of a \ref Point "Point"-map. @@ -727,9 +722,9 @@ Value operator[](Key k) const {return _map[k].normSquare();} }; - ///Returns a \ref NormSquareMap class + ///Returns a NormSquareMap class - ///This function just returns a \ref NormSquareMap class. + ///This function just returns a NormSquareMap class. /// ///\ingroup maps ///\relates NormSquareMap