lemon/dim2.h
branch1.2
changeset 1007 00769a5f0f5d
parent 440 88ed40ad0d4f
equal deleted inserted replaced
12:e1ee4eef1913 13:a73e9c0f35e1
    19 #ifndef LEMON_DIM2_H
    19 #ifndef LEMON_DIM2_H
    20 #define LEMON_DIM2_H
    20 #define LEMON_DIM2_H
    21 
    21 
    22 #include <iostream>
    22 #include <iostream>
    23 
    23 
    24 ///\ingroup misc
    24 ///\ingroup geomdat
    25 ///\file
    25 ///\file
    26 ///\brief A simple two dimensional vector and a bounding box implementation
    26 ///\brief A simple two dimensional vector and a bounding box implementation
    27 ///
       
    28 /// The class \ref lemon::dim2::Point "dim2::Point" implements
       
    29 /// a two dimensional vector with the usual operations.
       
    30 ///
       
    31 /// The class \ref lemon::dim2::Box "dim2::Box" can be used to determine
       
    32 /// the rectangular bounding box of a set of
       
    33 /// \ref lemon::dim2::Point "dim2::Point"'s.
       
    34 
    27 
    35 namespace lemon {
    28 namespace lemon {
    36 
    29 
    37   ///Tools for handling two dimensional coordinates
    30   ///Tools for handling two dimensional coordinates
    38 
    31 
    39   ///This namespace is a storage of several
    32   ///This namespace is a storage of several
    40   ///tools for handling two dimensional coordinates
    33   ///tools for handling two dimensional coordinates
    41   namespace dim2 {
    34   namespace dim2 {
    42 
    35 
    43   /// \addtogroup misc
    36   /// \addtogroup geomdat
    44   /// @{
    37   /// @{
    45 
    38 
    46   /// Two dimensional vector (plain vector)
    39   /// Two dimensional vector (plain vector)
    47 
    40 
    48   /// A simple two dimensional vector (plain vector) implementation
    41   /// A simple two dimensional vector (plain vector) implementation