1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //NOTE: This is an intreface to a function for the Translate creation.
23 #include "GEOM_Function.hxx"
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
38 class GEOMImpl_ITranslate
42 GEOMImpl_ITranslate(Handle(GEOM_Function) theFunction): _func(theFunction) {}
44 void SetPoint1(Handle(GEOM_Function) thePoint1) { _func->SetReference(TRANSLATE_ARG_POINT1, thePoint1); }
46 Handle(GEOM_Function) GetPoint1() { return _func->GetReference(TRANSLATE_ARG_POINT1); }
48 void SetPoint2(Handle(GEOM_Function) thePoint2) { _func->SetReference(TRANSLATE_ARG_POINT2, thePoint2); }
50 Handle(GEOM_Function) GetPoint2() { return _func->GetReference(TRANSLATE_ARG_POINT2); }
52 void SetVector(Handle(GEOM_Function) theVector) { _func->SetReference(TRANSLATE_ARG_VECTOR, theVector); }
54 Handle(GEOM_Function) GetVector() { return _func->GetReference(TRANSLATE_ARG_VECTOR); }
56 void SetOriginal(Handle(GEOM_Function) theOriginal) { _func->SetReference(TRANSLATE_ARG_ORIGINAL, theOriginal); }
58 Handle(GEOM_Function) GetOriginal() { return _func->GetReference(TRANSLATE_ARG_ORIGINAL); }
60 void SetStep1(double theStep) { return _func->SetReal(TRANSLATE_ARG_STEP1, theStep); }
62 double GetStep1() { return _func->GetReal(TRANSLATE_ARG_STEP1); }
64 void SetNbIter1(int theNbIter) { _func->SetInteger(TRANSLATE_ARG_NBITER1, theNbIter); }
66 int GetNbIter1() { return _func->GetInteger(TRANSLATE_ARG_NBITER1); }
68 void SetStep2(double theStep) { return _func->SetReal(TRANSLATE_ARG_STEP2, theStep); }
70 double GetStep2() { return _func->GetReal(TRANSLATE_ARG_STEP2); }
72 void SetNbIter2(int theNbIter) { _func->SetInteger(TRANSLATE_ARG_NBITER2, theNbIter); }
74 int GetNbIter2() { return _func->GetInteger(TRANSLATE_ARG_NBITER2); }
76 void SetVector2(Handle(GEOM_Function) theVector) { _func->SetReference(TRANSLATE_ARG_VECTOR2, theVector); }
78 Handle(GEOM_Function) GetVector2() { return _func->GetReference(TRANSLATE_ARG_VECTOR2); }
80 void SetDX(double theDX) { return _func->SetReal(TRANSLATE_ARG_DX, theDX); }
82 double GetDX() { return _func->GetReal(TRANSLATE_ARG_DX); }
84 void SetDY(double theDY) { return _func->SetReal(TRANSLATE_ARG_DY, theDY); }
86 double GetDY() { return _func->GetReal(TRANSLATE_ARG_DY); }
88 void SetDZ(double theDZ) { return _func->SetReal(TRANSLATE_ARG_DZ, theDZ); }
90 double GetDZ() { return _func->GetReal(TRANSLATE_ARG_DZ); }
94 Handle(GEOM_Function) _func;