X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESH%2FSMESH_OctreeNode.hxx;h=6a3b0cb39a1ec85b2d380995f55ad5f09f26e89e;hb=40b2818f18601091d81e0d9d749a3fd6808c31ce;hp=54ab75cc8b90099568156e68eebab2bdd24540d4;hpb=0635c9fc80f67d1e5dc0e94ec85f487286a92070;p=modules%2Fsmesh.git diff --git a/src/SMESH/SMESH_OctreeNode.hxx b/src/SMESH/SMESH_OctreeNode.hxx index 54ab75cc8..6a3b0cb39 100644 --- a/src/SMESH/SMESH_OctreeNode.hxx +++ b/src/SMESH/SMESH_OctreeNode.hxx @@ -21,11 +21,12 @@ // // SMESH SMESH_OctreeNode : Octree with Nodes set // inherites global class SMESH_Octree -// File : SMESH_OctreeNode.hxx -// Created : Tue Jan 16 16:00:00 2007 -// Author : Nicolas Geimer & Aurélien Motteux (OCC) -// Module : SMESH // +// File : SMESH_OctreeNode.hxx +// Created : Tue Jan 16 16:00:00 2007 +// Author : Nicolas Geimer & Aurélien Motteux (OCC) +// Module : SMESH + #ifndef _SMESH_OCTREENODE_HXX_ #define _SMESH_OCTREENODE_HXX_ @@ -49,7 +50,7 @@ public: // Constructor SMESH_OctreeNode (const std::set& theNodes, const int maxLevel = -1, - const int maxNbNodes = 5 , const double minBoxSize = 0.); + const int maxNbNodes = 5, const double minBoxSize = 0.); //============================= /*! @@ -62,11 +63,12 @@ public: virtual const bool isLeaf(); // Tells us if Node is inside the current box with the precision "precision" - virtual const bool isInside(const SMDS_MeshNode * Node, const double precision = 0. ); + virtual const bool isInside(const SMDS_MeshNode * Node, const double precision = 0.); // Return in Result a list of Nodes potentials to be near Node - void NodesAround( const SMDS_MeshNode * Node , std::list* Result, - const double precision = 0. ); + void NodesAround(const SMDS_MeshNode * Node, + std::list* Result, + const double precision = 0.); // Return in theGroupsOfNodes a list of group of nodes close to each other within theTolerance // Search for all the nodes in nodes @@ -126,4 +128,5 @@ protected: // The number of nodes I have inside the box int myNbNodes; }; + #endif