Salome HOME
This commit was generated by cvs2git to create branch 'BR_Dev_For_4_0'.
[modules/smesh.git] / src / SMESH / SMESH_Octree.hxx
1 //  SMESH SMESH_Octree : global Octree implementation
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 // File      : SMESH_Octree.hxx
25 // Created   : Tue Jan 16 16:00:00 2007
26 // Author    : Nicolas Geimer & AurĂ©lien Motteux (OCC)
27 // Module    : SMESH
28
29 #ifndef _SMESH_OCTREE_HXX_
30 #define _SMESH_OCTREE_HXX_
31
32 #include <Bnd_B3d.hxx>
33
34 class SMESH_Octree {
35
36 public:
37   // Constructor
38   SMESH_Octree (const int maxLevel = -1, const double minBoxSize = 0.);
39
40   // Destructor
41   virtual ~SMESH_Octree ();
42
43   // Tell if Octree is a leaf or not (has to be implemented in inherited classes)
44   virtual const bool     isLeaf() = 0;
45
46   // Compute the Octree
47   void                   Compute();
48
49   // Set the maximal level of the Octree
50   void                   setMaxLevel(const int maxLevel);
51
52   // Set the minimal size of the Box
53   void                   setMinBoxSize(const double minBoxSize){myMinBoxSize = minBoxSize;};
54
55   // Set the bounding box of the Octree
56   void                   setBox(const Bnd_B3d* box);
57
58   // Set box to the 3d Bounding Box of the Octree
59   void                   getBox(Bnd_B3d* box);
60
61   // Compute the bigger dimension of the box
62   static double          maxSize(const Bnd_B3d* box);
63
64 protected:
65   // Constructor for children (has to be implemented in inherited classes)
66   virtual SMESH_Octree* allocateOctreeChild() = 0;
67
68   // Build the 8 children boxes
69   void buildChildren();
70
71   // Build the data in the 8 children (has to be implemented in inherited classes)
72   virtual void buildChildrenData() = 0;
73
74   // members
75
76   // Box of the Octree
77   Bnd_B3d*       myBox;
78
79   // Array of 8 Octree children
80   SMESH_Octree** myChildren;
81
82   // Point the father, set to NULL for the level 0
83   SMESH_Octree*  myFather;
84
85   // Level of the Octree
86   int            myLevel;
87
88   // MaxLevel of the Octree
89   int            myMaxLevel;
90
91   // Minimal size of the Box
92   double         myMinBoxSize;
93
94   // Tell us if the Octree is a leaf or not (-1 if not initialized)
95   int            myIsLeaf;
96 };
97 #endif