Salome HOME
0021209: Bug GetInPlace with faces. Integrate self-intersections checker.
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IPipeDiffSect.hxx
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 //NOTE: This is an intreface to a function for the Pipe creation.
24 //
25 #ifndef _GEOMImpl_IPIPEDIFFSECT_HXX_
26 #define _GEOMImpl_IPIPEDIFFSECT_HXX_
27
28 #include "GEOM_Function.hxx"
29
30 #ifndef _GEOMImpl_IPIPE_HXX_
31 #include "GEOMImpl_IPipe.hxx"
32 #endif
33
34 #define PIPEDS_LIST_BASES 1
35 #define PIPEDS_LIST_LOCATIONS 3
36 //#define PIPEDS_ARG_PATH 2
37 #define PIPEDS_ARG_WITHCONTACT 4
38 #define PIPEDS_ARG_WITHCORRECT 5
39
40
41 class GEOMImpl_IPipeDiffSect : public GEOMImpl_IPipe
42 {
43  public:
44
45   GEOMImpl_IPipeDiffSect(const Handle(GEOM_Function)& theFunction):GEOMImpl_IPipe(theFunction) {}
46   
47   void SetBases (const Handle(TColStd_HSequenceOfTransient)& theBases) 
48   {
49     _func->SetReferenceList(PIPEDS_LIST_BASES,theBases);
50   }
51
52   Handle(TColStd_HSequenceOfTransient) GetBases ()
53   { 
54     Handle(TColStd_HSequenceOfTransient) aBases = _func->GetReferenceList(PIPEDS_LIST_BASES);
55     return aBases; 
56   }
57
58   void SetLocations (const Handle(TColStd_HSequenceOfTransient)& theLocations) 
59   { _func->SetReferenceList(PIPEDS_LIST_LOCATIONS,theLocations); }
60
61   Handle(TColStd_HSequenceOfTransient) GetLocations ()
62   { 
63     Handle(TColStd_HSequenceOfTransient) aLocs = _func->GetReferenceList(PIPEDS_LIST_LOCATIONS);
64     return aLocs; 
65   }
66
67   //void SetPath (const Handle(GEOM_Function)& thePath) { _func->SetReference(PIPEDS_ARG_PATH, thePath); }
68
69   //Handle(GEOM_Function) GetPath() { return _func->GetReference(PIPEDS_ARG_PATH); }
70
71   void SetWithContactMode(int theWithContact)
72   { _func->SetInteger(PIPEDS_ARG_WITHCONTACT,theWithContact); }
73
74   int GetWithContactMode()
75   { return _func->GetInteger(PIPEDS_ARG_WITHCONTACT); }
76
77   void SetWithCorrectionMode(int theWithCorrection)
78   { _func->SetInteger(PIPEDS_ARG_WITHCORRECT,theWithCorrection); }
79
80   int GetWithCorrectionMode()
81   { return _func->GetInteger(PIPEDS_ARG_WITHCORRECT); }
82
83 };
84
85 #endif