1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 //NOTE: This is an intreface to a function for the Translate creation.
25 #include "GEOM_Function.hxx"
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
41 class GEOMImpl_ITranslate
45 GEOMImpl_ITranslate(Handle(GEOM_Function) theFunction): _func(theFunction) {}
47 void SetPoint1(Handle(GEOM_Function) thePoint1) { _func->SetReference(TRANSLATE_ARG_POINT1, thePoint1); }
49 Handle(GEOM_Function) GetPoint1() { return _func->GetReference(TRANSLATE_ARG_POINT1); }
51 void SetPoint2(Handle(GEOM_Function) thePoint2) { _func->SetReference(TRANSLATE_ARG_POINT2, thePoint2); }
53 Handle(GEOM_Function) GetPoint2() { return _func->GetReference(TRANSLATE_ARG_POINT2); }
55 void SetVector(Handle(GEOM_Function) theVector) { _func->SetReference(TRANSLATE_ARG_VECTOR, theVector); }
57 Handle(GEOM_Function) GetVector() { return _func->GetReference(TRANSLATE_ARG_VECTOR); }
59 void SetOriginal(Handle(GEOM_Function) theOriginal) { _func->SetReference(TRANSLATE_ARG_ORIGINAL, theOriginal); }
61 Handle(GEOM_Function) GetOriginal() { return _func->GetReference(TRANSLATE_ARG_ORIGINAL); }
63 void SetStep1(double theStep) { return _func->SetReal(TRANSLATE_ARG_STEP1, theStep); }
65 double GetStep1() { return _func->GetReal(TRANSLATE_ARG_STEP1); }
67 void SetNbIter1(int theNbIter) { _func->SetInteger(TRANSLATE_ARG_NBITER1, theNbIter); }
69 int GetNbIter1() { return _func->GetInteger(TRANSLATE_ARG_NBITER1); }
71 void SetStep2(double theStep) { return _func->SetReal(TRANSLATE_ARG_STEP2, theStep); }
73 double GetStep2() { return _func->GetReal(TRANSLATE_ARG_STEP2); }
75 void SetNbIter2(int theNbIter) { _func->SetInteger(TRANSLATE_ARG_NBITER2, theNbIter); }
77 int GetNbIter2() { return _func->GetInteger(TRANSLATE_ARG_NBITER2); }
79 void SetVector2(Handle(GEOM_Function) theVector) { _func->SetReference(TRANSLATE_ARG_VECTOR2, theVector); }
81 Handle(GEOM_Function) GetVector2() { return _func->GetReference(TRANSLATE_ARG_VECTOR2); }
83 void SetDX(double theDX) { return _func->SetReal(TRANSLATE_ARG_DX, theDX); }
85 double GetDX() { return _func->GetReal(TRANSLATE_ARG_DX); }
87 void SetDistance(double theDistance) { return _func->SetReal(TRANSLATE_ARG_DISTANCE, theDistance); }
89 double GetDistance() { return _func->GetReal(TRANSLATE_ARG_DISTANCE); }
91 void SetDY(double theDY) { return _func->SetReal(TRANSLATE_ARG_DY, theDY); }
93 double GetDY() { return _func->GetReal(TRANSLATE_ARG_DY); }
95 void SetDZ(double theDZ) { return _func->SetReal(TRANSLATE_ARG_DZ, theDZ); }
97 double GetDZ() { return _func->GetReal(TRANSLATE_ARG_DZ); }
101 Handle(GEOM_Function) _func;