Salome HOME
Mantis issue 0020626: EDF 1200 GEOM: the discretisation of the circles in the OCC...
[modules/geom.git] / src / NMTDS / NMTDS_BoxBndTree.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // File:        NMTDS_BoxBndTree.cxx
23 // Created:     Tue Oct 17 13:04:11 2006
24 // Author:      Peter KURNEV
25 //              <pkv@irinox>
26 //
27 #include <NMTDS_BoxBndTree.hxx>
28 //=======================================================================
29 //function : 
30 //purpose  : 
31 //=======================================================================
32   NMTDS_BoxBndTreeSelector::NMTDS_BoxBndTreeSelector()
33 {
34 }
35 //=======================================================================
36 //function : ~
37 //purpose  : 
38 //=======================================================================
39   NMTDS_BoxBndTreeSelector::~NMTDS_BoxBndTreeSelector()
40 {
41 }
42 //=======================================================================
43 //function : Reject
44 //purpose  : 
45 //=======================================================================
46   Standard_Boolean NMTDS_BoxBndTreeSelector::Reject (const Bnd_Box& aBox) const
47 {
48   Standard_Boolean bRet;
49   //
50   bRet=myBox.IsOut(aBox);
51   return bRet;
52 }
53 //=======================================================================
54 //function : Accept
55 //purpose  : 
56 //=======================================================================
57   Standard_Boolean NMTDS_BoxBndTreeSelector::Accept (const Standard_Integer& aIndex)
58 {
59   Standard_Boolean bRet=Standard_False;
60   //
61   if (myFence.Add(aIndex)) {
62     myIndices.Append(aIndex);
63     bRet=!bRet;
64   }
65   return bRet;
66 }
67 //=======================================================================
68 //function : SetBox
69 //purpose  : 
70 //=======================================================================
71   void NMTDS_BoxBndTreeSelector::SetBox(const Bnd_Box& aBox)
72 {
73   myBox=aBox;
74 }
75 //=======================================================================
76 //function : Clear
77 //purpose  : 
78 //=======================================================================
79   void NMTDS_BoxBndTreeSelector::Clear()
80 {
81   myFence.Clear();
82   myIndices.Clear();
83 }
84 //=======================================================================
85 //function : Indices
86 //purpose  : 
87 //=======================================================================
88   const TColStd_ListOfInteger& NMTDS_BoxBndTreeSelector::Indices() const
89 {
90   return myIndices;
91 }