Salome HOME
3cc3cab966fa826697a9821dd1a3ffd4d3a1a5a6
[modules/geom.git] / src / GEOMImpl / GEOMImpl_ITranslate.hxx
1 // Copyright (C) 2007-2023  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 //NOTE: This is an interface to a function for the Translate creation.
24 //
25 #include "GEOM_Function.hxx"
26
27 #define TRANSLATE_ARG_POINT1   1  
28 #define TRANSLATE_ARG_POINT2   2
29 #define TRANSLATE_ARG_VECTOR   3
30 #define TRANSLATE_ARG_ORIGINAL 6
31 #define TRANSLATE_ARG_STEP1    7
32 #define TRANSLATE_ARG_NBITER1  8
33 #define TRANSLATE_ARG_STEP2    9
34 #define TRANSLATE_ARG_NBITER2  10
35 #define TRANSLATE_ARG_VECTOR2  11
36 #define TRANSLATE_ARG_DX  12
37 #define TRANSLATE_ARG_DY  13  
38 #define TRANSLATE_ARG_DZ  14
39 #define TRANSLATE_ARG_DISTANCE 15    
40
41 class GEOMImpl_ITranslate
42 {
43  public:
44   
45   GEOMImpl_ITranslate(Handle(GEOM_Function) theFunction): _func(theFunction) {}
46   
47   void SetPoint1(Handle(GEOM_Function) thePoint1) { _func->SetReference(TRANSLATE_ARG_POINT1, thePoint1); }
48   
49   Handle(GEOM_Function) GetPoint1() { return _func->GetReference(TRANSLATE_ARG_POINT1); }
50   
51   void SetPoint2(Handle(GEOM_Function) thePoint2) { _func->SetReference(TRANSLATE_ARG_POINT2, thePoint2); }
52   
53   Handle(GEOM_Function) GetPoint2() { return _func->GetReference(TRANSLATE_ARG_POINT2); }
54   
55   void SetVector(Handle(GEOM_Function) theVector) { _func->SetReference(TRANSLATE_ARG_VECTOR, theVector); }
56   
57   Handle(GEOM_Function) GetVector() { return _func->GetReference(TRANSLATE_ARG_VECTOR); } 
58   
59   void SetOriginal(Handle(GEOM_Function) theOriginal) { _func->SetReference(TRANSLATE_ARG_ORIGINAL, theOriginal); }
60
61   Handle(GEOM_Function) GetOriginal() { return _func->GetReference(TRANSLATE_ARG_ORIGINAL); }
62   
63   void SetStep1(double theStep) { return _func->SetReal(TRANSLATE_ARG_STEP1, theStep); }
64
65   double GetStep1() { return _func->GetReal(TRANSLATE_ARG_STEP1); }
66
67   void SetNbIter1(int theNbIter) { _func->SetInteger(TRANSLATE_ARG_NBITER1, theNbIter); }
68
69   int GetNbIter1() { return _func->GetInteger(TRANSLATE_ARG_NBITER1); } 
70
71   void SetStep2(double theStep) { return _func->SetReal(TRANSLATE_ARG_STEP2, theStep); }
72
73   double GetStep2() { return _func->GetReal(TRANSLATE_ARG_STEP2); }
74
75   void SetNbIter2(int theNbIter) { _func->SetInteger(TRANSLATE_ARG_NBITER2, theNbIter); }
76
77   int GetNbIter2() { return _func->GetInteger(TRANSLATE_ARG_NBITER2); } 
78
79   void SetVector2(Handle(GEOM_Function) theVector) { _func->SetReference(TRANSLATE_ARG_VECTOR2, theVector); }
80   
81   Handle(GEOM_Function) GetVector2() { return _func->GetReference(TRANSLATE_ARG_VECTOR2); } 
82
83   void SetDX(double theDX) { return _func->SetReal(TRANSLATE_ARG_DX, theDX); }
84
85   double GetDX() { return _func->GetReal(TRANSLATE_ARG_DX); }
86
87   void SetDistance(double theDistance) { return _func->SetReal(TRANSLATE_ARG_DISTANCE, theDistance); }
88
89   double GetDistance() { return _func->GetReal(TRANSLATE_ARG_DISTANCE); }
90
91   void SetDY(double theDY) { return _func->SetReal(TRANSLATE_ARG_DY, theDY); }
92
93   double GetDY() { return _func->GetReal(TRANSLATE_ARG_DY); }
94
95   void SetDZ(double theDZ) { return _func->SetReal(TRANSLATE_ARG_DZ, theDZ); }
96
97   double GetDZ() { return _func->GetReal(TRANSLATE_ARG_DZ); }
98
99  private:
100   
101   Handle(GEOM_Function) _func;  
102 };