Salome HOME
Copyrights update 2015.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ShapeAlgo.cxx
1 // Copyright (C) 2007-2015  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_ShapeAlgo.cxx
24 // Created:     Tue Dec  7 12:06:54 2004
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #include <GEOMAlgo_ShapeAlgo.hxx>
29 #if OCC_VERSION_LARGE > 0x06070100
30 #include <IntTools_Context.hxx>
31 #else
32 #include <BOPInt_Context.hxx>
33 #endif
34
35 //=======================================================================
36 //function : GEOMAlgo_ShapeAlgo
37 //purpose  :
38 //=======================================================================
39 GEOMAlgo_ShapeAlgo::GEOMAlgo_ShapeAlgo()
40 :
41   GEOMAlgo_Algo()
42 {
43   myTolerance=0.0001;
44 }
45
46 //=======================================================================
47 //function : ~
48 //purpose  :
49 //=======================================================================
50 GEOMAlgo_ShapeAlgo::~GEOMAlgo_ShapeAlgo()
51 {
52 }
53 //=======================================================================
54 //function : SetContext
55 //purpose  :
56 //=======================================================================
57 #if OCC_VERSION_LARGE > 0x06070100
58 void GEOMAlgo_ShapeAlgo::SetContext(const Handle(IntTools_Context)& theContext)
59 #else
60 void GEOMAlgo_ShapeAlgo::SetContext(const Handle(BOPInt_Context)& theContext)
61 #endif
62 {
63   myContext=theContext;
64 }
65 //=======================================================================
66 //function : Context
67 //purpose  :
68 //=======================================================================
69 #if OCC_VERSION_LARGE > 0x06070100
70 const Handle(IntTools_Context)& GEOMAlgo_ShapeAlgo::Context()const
71 #else
72 const Handle(BOPInt_Context)& GEOMAlgo_ShapeAlgo::Context()const
73 #endif
74 {
75   return myContext;
76 }
77 //=======================================================================
78 //function : SetShape
79 //purpose  :
80 //=======================================================================
81 void GEOMAlgo_ShapeAlgo::SetShape(const TopoDS_Shape& aS)
82 {
83   myShape=aS;
84 }
85 //=======================================================================
86 //function : Shape
87 //purpose  :
88 //=======================================================================
89 const TopoDS_Shape& GEOMAlgo_ShapeAlgo::Shape()const
90 {
91   return myShape;
92 }
93 //=======================================================================
94 //function : SetTolerance
95 //purpose  :
96 //=======================================================================
97 void GEOMAlgo_ShapeAlgo::SetTolerance(const Standard_Real aT)
98 {
99   myTolerance=aT;
100 }
101 //=======================================================================
102 //function : Tolerance
103 //purpose  :
104 //=======================================================================
105 Standard_Real GEOMAlgo_ShapeAlgo::Tolerance()const
106 {
107   return myTolerance;
108 }
109 //=======================================================================
110 //function : Result
111 //purpose  :
112 //=======================================================================
113 const TopoDS_Shape& GEOMAlgo_ShapeAlgo::Result()const
114 {
115   return myResult;
116 }
117 //=======================================================================
118 //function : Perform
119 //purpose  :
120 //=======================================================================
121 void GEOMAlgo_ShapeAlgo::Perform()
122 {
123   if (myContext.IsNull()) {
124 #if OCC_VERSION_LARGE > 0x06070100
125     myContext=new IntTools_Context;
126 #else
127     myContext=new BOPInt_Context;
128 #endif
129   }
130 }