1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File: GEOMAlgo_ShapeAlgo.cxx
24 // Created: Tue Dec 7 12:06:54 2004
25 // Author: Peter KURNEV
28 #include <GEOMAlgo_ShapeAlgo.hxx>
29 #include <BOPInt_Context.hxx>
31 //=======================================================================
32 //function : GEOMAlgo_ShapeAlgo
34 //=======================================================================
35 GEOMAlgo_ShapeAlgo::GEOMAlgo_ShapeAlgo()
42 //=======================================================================
45 //=======================================================================
46 GEOMAlgo_ShapeAlgo::~GEOMAlgo_ShapeAlgo()
49 //=======================================================================
50 //function : SetContext
52 //=======================================================================
53 void GEOMAlgo_ShapeAlgo::SetContext(const Handle(BOPInt_Context)& theContext)
57 //=======================================================================
60 //=======================================================================
61 const Handle(BOPInt_Context)& GEOMAlgo_ShapeAlgo::Context()const
65 //=======================================================================
68 //=======================================================================
69 void GEOMAlgo_ShapeAlgo::SetShape(const TopoDS_Shape& aS)
73 //=======================================================================
76 //=======================================================================
77 const TopoDS_Shape& GEOMAlgo_ShapeAlgo::Shape()const
81 //=======================================================================
82 //function : SetTolerance
84 //=======================================================================
85 void GEOMAlgo_ShapeAlgo::SetTolerance(const Standard_Real aT)
89 //=======================================================================
90 //function : Tolerance
92 //=======================================================================
93 Standard_Real GEOMAlgo_ShapeAlgo::Tolerance()const
97 //=======================================================================
100 //=======================================================================
101 const TopoDS_Shape& GEOMAlgo_ShapeAlgo::Result()const
105 //=======================================================================
108 //=======================================================================
109 void GEOMAlgo_ShapeAlgo::Perform()
111 if (myContext.IsNull()) {
112 myContext=new BOPInt_Context;