Salome HOME
Update copyright
[modules/geom.git] / src / GEOMAlgo / BlockFix_BlockFixAPI.lxx
1 // Copyright (C) 2007-2011  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
23 #include <BlockFix_BlockFixAPI.hxx>
24
25 //=======================================================================
26 //function : SetShape
27 //purpose  : 
28 //=======================================================================
29
30 inline void BlockFix_BlockFixAPI::SetShape(const TopoDS_Shape& Shape)
31 {
32   myShape = Shape;
33 }
34
35 //=======================================================================
36 //function : Shape
37 //purpose  : 
38 //=======================================================================
39
40 inline TopoDS_Shape BlockFix_BlockFixAPI::Shape() const
41 {
42   return myShape;
43 }
44
45 //=======================================================================
46 //function : Context
47 //purpose  : 
48 //=======================================================================
49
50 inline Handle(ShapeBuild_ReShape)& BlockFix_BlockFixAPI::Context()
51 {
52   return myContext;
53 }
54
55 //=======================================================================
56 //function : Tolerance
57 //purpose  : 
58 //=======================================================================
59
60 inline Standard_Real& BlockFix_BlockFixAPI::Tolerance()
61 {
62   return myTolerance;
63 }
64
65 //=======================================================================
66 //function : OptimumNbFaces
67 //purpose  : 
68 //=======================================================================
69
70 inline Standard_Integer& BlockFix_BlockFixAPI::OptimumNbFaces()
71 {
72   return myOptimumNbFaces;
73 }