src/include/xy.h
changeset 458 2df1fee6c866
parent 432 a51ba0e51a3a
child 491 4804c967543d
     1.1 --- a/src/include/xy.h	Wed Apr 28 12:33:05 2004 +0000
     1.2 +++ b/src/include/xy.h	Wed Apr 28 12:58:58 2004 +0000
     1.3 @@ -14,6 +14,8 @@
     1.4  ///
     1.5  /// The class \ref hugo::BoundingBox "BoundingBox" can be used to determine
     1.6  /// the rectangular bounding box a set of \ref hugo::xy "xy"'s.
     1.7 +///
     1.8 +///\author Attila Bernath
     1.9  
    1.10  
    1.11  namespace hugo {
    1.12 @@ -21,10 +23,13 @@
    1.13    /// \addtogroup misc
    1.14    /// @{
    1.15  
    1.16 -/** \brief
    1.17 -2 dimensional vector (plainvector) implementation
    1.18 +  /// A two dimensional vector (plainvector) implementation
    1.19  
    1.20 -*/
    1.21 +  /// A two dimensional vector (plainvector) implementation
    1.22 +  ///with the usual vector
    1.23 +  /// operators.
    1.24 +  ///
    1.25 +  ///\author Attila Bernath
    1.26    template<typename T>
    1.27      class xy {
    1.28  
    1.29 @@ -133,10 +138,11 @@
    1.30    }
    1.31  
    1.32  
    1.33 -  /** \brief
    1.34 -     Implementation of a bounding box of plainvectors.
    1.35 -     
    1.36 -  */
    1.37 +  /// A class to calculate or store the bounding box of plainvectors.
    1.38 +
    1.39 +  /// A class to calculate or store the bounding box of plainvectors.
    1.40 +  ///
    1.41 +  ///\author Attila Bernath
    1.42    template<typename T>
    1.43      class BoundingBox {
    1.44        xy<T> bottom_left, top_right;