Salome HOME
7437c3d9b317c7e69e4546cba7e4cc74b194d58e
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_StateCollector.cxx
1 // Copyright (C) 2007-2022  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, or (at your option) any later version.
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 // File:        GEOMAlgo_StateCollector.cxx
24 // Created:     Thu Mar 10 09:42:11 2005
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #include <GEOMAlgo_StateCollector.hxx>
29
30 //=======================================================================
31 //function : GEOMAlgo_StateCollector
32 //purpose  :
33 //=======================================================================
34 GEOMAlgo_StateCollector::GEOMAlgo_StateCollector()
35 {
36   myCounter[0]=0;
37   myCounter[1]=0;
38   myCounter[2]=0;
39 }
40 //=======================================================================
41 //function : AppendState
42 //purpose  :
43 //=======================================================================
44 Standard_Boolean GEOMAlgo_StateCollector::AppendState(const TopAbs_State aSt)
45 {
46   Standard_Boolean bIsToBreak;
47   //
48   switch(aSt) {
49     case TopAbs_IN:
50       ++myCounter[0];
51       break;
52     case TopAbs_OUT:
53       ++myCounter[1];
54       break;
55     case TopAbs_ON:
56       ++myCounter[2];
57       break;
58     default:
59       break;
60   }
61   bIsToBreak=(myCounter[0] && myCounter[1]);
62   //
63   return bIsToBreak;
64 }
65 //=======================================================================
66 //function : State
67 //purpose  :
68 //=======================================================================
69 TopAbs_State GEOMAlgo_StateCollector::State()const
70 {
71   TopAbs_State aSt;
72   //
73   aSt=TopAbs_UNKNOWN;
74   //
75   if (myCounter[0] && myCounter[1]) {
76     return aSt;
77   }
78   //
79   else if (myCounter[0] && myCounter[2]>=0) {
80     aSt=TopAbs_IN;
81   }
82   //
83   else if (myCounter[1] && myCounter[2]>=0) {
84     aSt=TopAbs_OUT;
85   }
86   //
87   else if (!myCounter[0] && !myCounter[1] && myCounter[2]) {
88     aSt=TopAbs_ON;
89   }
90   //
91   return aSt;
92 }