Salome HOME
732165db79d03adf592ba97ee5995728aa76fdc8
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_FaceFilter.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #include "GEOM_FaceFilter.h"
21
22 #include <BRepAdaptor_Surface.hxx>
23 #include <TopoDS_Face.hxx>
24 #include <TopoDS.hxx>
25 #include <StdSelect_TypeOfFace.hxx>
26
27 //=======================================================================
28 // function : GEOM_FaceFilter
29 // purpose  : 
30 //=======================================================================
31 GEOM_FaceFilter::GEOM_FaceFilter( SalomeApp_Study* study, const int kind )
32 : GEOM_SelectionFilter( study ),
33 myKind( kind )
34 {
35   add( TopAbs_FACE );
36 }
37
38 //=======================================================================
39 // function : ~GEOM_SelectionFilter
40 // purpose  : 
41 //=======================================================================
42 GEOM_FaceFilter::~GEOM_FaceFilter()
43 {
44 }
45
46 //=======================================================================
47 // function : isShapeOk
48 // purpose  : 
49 //=======================================================================
50 bool GEOM_FaceFilter::isShapeOk( const TopoDS_Shape& theShape ) const
51 {
52   if ( !theShape.IsNull() && theShape.ShapeType() == TopAbs_FACE )
53   {
54     BRepAdaptor_Surface aSurf( TopoDS::Face( theShape ) );
55     GeomAbs_SurfaceType aType = aSurf.GetType();
56         
57     switch ( myKind ) 
58     {
59     case StdSelect_AnyFace:   return Standard_True;
60     case StdSelect_Plane:     return ( aType == GeomAbs_Plane );
61     case StdSelect_Cylinder:  return ( aType == GeomAbs_Cylinder);
62     case StdSelect_Sphere:    return ( aType == GeomAbs_Sphere);      
63     case StdSelect_Torus:     return ( aType == GeomAbs_Torus);      
64     case StdSelect_Revol:     return ( aType == GeomAbs_Cylinder  || 
65                                        aType == GeomAbs_Cone      ||
66                                        aType == GeomAbs_Torus     ||
67                                        aType == GeomAbs_Sphere    || 
68                                        aType == GeomAbs_SurfaceOfRevolution ); 
69     case StdSelect_Cone:      return ( aType == GeomAbs_Cone);      
70     }
71   }
72   return false;
73 }
74