1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 // File: GEOMAlgo_ClsfSolid.cxx
21 // Created: Mon Jan 29 10:35:46 2007
22 // Author: Peter KURNEV
25 #include <GEOMAlgo_ClsfSolid.ixx>
27 #include <TopAbs_ShapeEnum.hxx>
29 #include <TopoDS_Solid.hxx>
30 #include <BRep_Builder.hxx>
31 #include <BRepClass3d_SolidClassifier.hxx>
33 //=======================================================================
36 //=======================================================================
37 GEOMAlgo_ClsfSolid::GEOMAlgo_ClsfSolid()
43 //=======================================================================
46 //=======================================================================
47 GEOMAlgo_ClsfSolid::~GEOMAlgo_ClsfSolid()
50 BRepClass3d_SolidClassifier* pSC;
52 pSC=(BRepClass3d_SolidClassifier*)myPClsf;
56 //=======================================================================
59 //=======================================================================
60 void GEOMAlgo_ClsfSolid::SetShape(const TopoDS_Shape& aS)
64 //=======================================================================
67 //=======================================================================
68 const TopoDS_Shape& GEOMAlgo_ClsfSolid::Shape()const
72 //=======================================================================
73 //function : CheckData
75 //=======================================================================
76 void GEOMAlgo_ClsfSolid::CheckData()
80 BRepClass3d_SolidClassifier* pSC;
81 TopAbs_ShapeEnum aType;
85 if (myShape.IsNull()) {
86 myErrorStatus=10; // mySolid=NULL
90 aType=myShape.ShapeType();
91 if (!(aType==TopAbs_SOLID || aType==TopAbs_SHELL)) {
97 if (aType==TopAbs_SOLID) {
98 aS=TopoDS::Solid(myShape);
102 aBB.Add(aS, myShape);
106 pSC=(BRepClass3d_SolidClassifier*)myPClsf;
110 pSC=new BRepClass3d_SolidClassifier(aS);
113 //=======================================================================
116 //=======================================================================
117 void GEOMAlgo_ClsfSolid::Perform()
126 BRepClass3d_SolidClassifier* pSC;
128 pSC=(BRepClass3d_SolidClassifier*)myPClsf;
129 pSC->Perform(myPnt, myTolerance);
130 myState=pSC->State();
137 // 12 - unallowed type of myShape