diff --git a/MeshGeoToolsLib/MeshNodeSearcher.cpp b/MeshGeoToolsLib/MeshNodeSearcher.cpp index 6d95d3df1cc185276fd4abe34db820beca348f37..664a68248266c7365ea61855502bde5195ff0e38 100644 --- a/MeshGeoToolsLib/MeshNodeSearcher.cpp +++ b/MeshGeoToolsLib/MeshNodeSearcher.cpp @@ -1,7 +1,5 @@ /** - * @file * @date Oct 24, 2013 - * @brief * * @copyright * Copyright (c) 2012-2014, OpenGeoSys Community (http://www.opengeosys.org) @@ -10,14 +8,14 @@ * http://www.opengeosys.org/LICENSE.txt */ +#include "MeshGeoToolsLib/MeshNodeSearcher.h" + // ThirdParty/logog #include "logog/include/logog.hpp" -#include "MeshGeoToolsLib/MeshNodeSearcher.h" - // MeshLib -#include "Elements/Element.h" -#include "Elements/Line.h" +#include "MeshLib/Elements/Element.h" +#include "MeshLib/Elements/Line.h" // MeshGeoToolsLib #include "MeshGeoToolsLib/HeuristicSearchLength.h" diff --git a/MeshGeoToolsLib/MeshNodeSearcher.h b/MeshGeoToolsLib/MeshNodeSearcher.h index b98b10b2024b3454d618c75b240b3de8cc515c99..993bb32aca454019e16723aef583fa2cb4f81956 100644 --- a/MeshGeoToolsLib/MeshNodeSearcher.h +++ b/MeshGeoToolsLib/MeshNodeSearcher.h @@ -1,7 +1,5 @@ /** - * @file * @date Oct 24, 2013 - * @brief * * @copyright * Copyright (c) 2012-2014, OpenGeoSys Community (http://www.opengeosys.org) @@ -17,13 +15,13 @@ #include "boost/optional.hpp" // GeoLib -#include "Point.h" -#include "Polyline.h" -#include "Grid.h" +#include "GeoLib/Point.h" +#include "GeoLib/Polyline.h" +#include "GeoLib/Grid.h" // MeshLib -#include "Mesh.h" -#include "Node.h" +#include "MeshLib/Mesh.h" +#include "MeshLib/Node.h" // forward declaration namespace MeshGeoToolsLib @@ -45,8 +43,8 @@ class MeshNodeSearcher public: /** * Constructor for objects of class MeshNodeSearcher. It calculates - * internal used search length out of the given MeshLib::Mesh. - * @param mesh The mesh within the search will be performed. It is asumed + * internally used search length from the given MeshLib::Mesh. + * @param mesh Run search algorithm on this mesh. It is assumed * that the mesh does not change its geometry. */ explicit MeshNodeSearcher(MeshLib::Mesh const& mesh,