Salome HOME
Update mail address
[modules/geom.git] / src / GEOMImpl / GEOMImpl_ITranslate.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //NOTE: This is an intreface to a function for the Translate creation.
21
22
23 #include "GEOM_Function.hxx"
24
25 #define TRANSLATE_ARG_POINT1   1  
26 #define TRANSLATE_ARG_POINT2   2
27 #define TRANSLATE_ARG_VECTOR   3
28 #define TRANSLATE_ARG_ORIGINAL 6
29 #define TRANSLATE_ARG_STEP1    7
30 #define TRANSLATE_ARG_NBITER1  8
31 #define TRANSLATE_ARG_STEP2    9
32 #define TRANSLATE_ARG_NBITER2  10
33 #define TRANSLATE_ARG_VECTOR2  11
34 #define TRANSLATE_ARG_DX  12
35 #define TRANSLATE_ARG_DY  13  
36 #define TRANSLATE_ARG_DZ  14  
37
38 class GEOMImpl_ITranslate
39 {
40  public:
41   
42   GEOMImpl_ITranslate(Handle(GEOM_Function) theFunction): _func(theFunction) {}
43   
44   void SetPoint1(Handle(GEOM_Function) thePoint1) { _func->SetReference(TRANSLATE_ARG_POINT1, thePoint1); }
45   
46   Handle(GEOM_Function) GetPoint1() { return _func->GetReference(TRANSLATE_ARG_POINT1); }
47   
48   void SetPoint2(Handle(GEOM_Function) thePoint2) { _func->SetReference(TRANSLATE_ARG_POINT2, thePoint2); }
49   
50   Handle(GEOM_Function) GetPoint2() { return _func->GetReference(TRANSLATE_ARG_POINT2); }
51   
52   void SetVector(Handle(GEOM_Function) theVector) { _func->SetReference(TRANSLATE_ARG_VECTOR, theVector); }
53   
54   Handle(GEOM_Function) GetVector() { return _func->GetReference(TRANSLATE_ARG_VECTOR); } 
55   
56   void SetOriginal(Handle(GEOM_Function) theOriginal) { _func->SetReference(TRANSLATE_ARG_ORIGINAL, theOriginal); }
57
58   Handle(GEOM_Function) GetOriginal() { return _func->GetReference(TRANSLATE_ARG_ORIGINAL); }
59   
60   void SetStep1(double theStep) { return _func->SetReal(TRANSLATE_ARG_STEP1, theStep); }
61
62   double GetStep1() { return _func->GetReal(TRANSLATE_ARG_STEP1); }
63
64   void SetNbIter1(int theNbIter) { _func->SetInteger(TRANSLATE_ARG_NBITER1, theNbIter); }
65
66   int GetNbIter1() { return _func->GetInteger(TRANSLATE_ARG_NBITER1); } 
67
68   void SetStep2(double theStep) { return _func->SetReal(TRANSLATE_ARG_STEP2, theStep); }
69
70   double GetStep2() { return _func->GetReal(TRANSLATE_ARG_STEP2); }
71
72   void SetNbIter2(int theNbIter) { _func->SetInteger(TRANSLATE_ARG_NBITER2, theNbIter); }
73
74   int GetNbIter2() { return _func->GetInteger(TRANSLATE_ARG_NBITER2); } 
75
76   void SetVector2(Handle(GEOM_Function) theVector) { _func->SetReference(TRANSLATE_ARG_VECTOR2, theVector); }
77   
78   Handle(GEOM_Function) GetVector2() { return _func->GetReference(TRANSLATE_ARG_VECTOR2); } 
79
80   void SetDX(double theDX) { return _func->SetReal(TRANSLATE_ARG_DX, theDX); }
81
82   double GetDX() { return _func->GetReal(TRANSLATE_ARG_DX); }
83
84   void SetDY(double theDY) { return _func->SetReal(TRANSLATE_ARG_DY, theDY); }
85
86   double GetDY() { return _func->GetReal(TRANSLATE_ARG_DY); }
87
88   void SetDZ(double theDZ) { return _func->SetReal(TRANSLATE_ARG_DZ, theDZ); }
89
90   double GetDZ() { return _func->GetReal(TRANSLATE_ARG_DZ); }
91
92  private:
93   
94   Handle(GEOM_Function) _func;  
95 };