1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // SMESH SMESH_OctreeNode : Octree with Nodes set
23 // inherites global class SMESH_Octree
25 // File : SMESH_OctreeNode.hxx
26 // Created : Tue Jan 16 16:00:00 2007
27 // Author : Nicolas Geimer & Aurélien Motteux (OCC)
30 #ifndef _SMESH_OCTREENODE_HXX_
31 #define _SMESH_OCTREENODE_HXX_
33 #include "SMESH_Octree.hxx"
38 #include "SMDS_ElemIterator.hxx"
42 class SMESH_OctreeNode;
44 typedef SMDS_Iterator<SMESH_OctreeNode*> SMESH_OctreeNodeIterator;
45 typedef boost::shared_ptr<SMESH_OctreeNodeIterator> SMESH_OctreeNodeIteratorPtr;
47 class SMESH_OctreeNode : public SMESH_Octree{
52 SMESH_OctreeNode (const std::set<const SMDS_MeshNode*>& theNodes, const int maxLevel = -1,
53 const int maxNbNodes = 5, const double minBoxSize = 0.);
55 //=============================
57 * \brief Empty destructor
59 //=============================
60 virtual ~SMESH_OctreeNode () {};
62 // Tells us if SMESH_OctreeNode is a leaf or not (-1 = not initialiazed)
63 virtual const bool isLeaf();
65 // Tells us if Node is inside the current box with the precision "precision"
66 virtual const bool isInside(const SMDS_MeshNode * Node, const double precision = 0.);
68 // Return in Result a list of Nodes potentials to be near Node
69 void NodesAround(const SMDS_MeshNode * Node,
70 std::list<const SMDS_MeshNode*>* Result,
71 const double precision = 0.);
73 // Return in theGroupsOfNodes a list of group of nodes close to each other within theTolerance
74 // Search for all the nodes in nodes
75 void FindCoincidentNodes ( std::set<const SMDS_MeshNode*>* nodes,
76 const double theTolerance,
77 std::list< std::list< const SMDS_MeshNode*> >* theGroupsOfNodes);
79 // Static method that return in theGroupsOfNodes a list of group of nodes close to each other within
80 // theTolerance search for all the nodes in nodes
81 static void FindCoincidentNodes ( std::set<const SMDS_MeshNode*> nodes,
82 std::list< std::list< const SMDS_MeshNode*> >* theGroupsOfNodes,
83 const double theTolerance = 0.00001, const int maxLevel = -1,
84 const int maxNbNodes = 5);
86 * \brief Return iterator over children
88 SMESH_OctreeNodeIteratorPtr GetChildrenIterator();
90 * \brief Return nodes iterator
92 SMDS_NodeIteratorPtr GetNodeIterator();
94 * \brief Return nb nodes in a tree
96 int NbNodes() const { return myNbNodes; }
100 //=============================
102 * \brief Empty constructor
104 //=============================
105 SMESH_OctreeNode (){};
107 // Shares the father's data with each of his child
108 virtual void buildChildrenData();
110 // Compute the bounding box of the whole set of nodes myNodes (only used for OctreeNode level 0)
111 void computeBoxForFather();
113 // Construct an empty SMESH_OctreeNode used by SMESH_Octree::buildChildren()
114 virtual SMESH_Octree* allocateOctreeChild();
116 // Return in result a list of nodes closed to Node and remove it from SetOfNodes
117 void FindCoincidentNodes( const SMDS_MeshNode * Node,
118 std::set<const SMDS_MeshNode*>* SetOfNodes,
119 std::list<const SMDS_MeshNode*>* Result,
120 const double precision);
122 // The max number of nodes a leaf box can contain
125 // The set of nodes inside the box of the Octree (Empty if Octree is not a leaf)
126 std::set<const SMDS_MeshNode*> myNodes;
128 // The number of nodes I have inside the box