Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IBox.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 Box creation.
21
22
23 #include "GEOM_Function.hxx"
24
25 #define BOX_ARG_DX   1
26 #define BOX_ARG_DY   2
27 #define BOX_ARG_DZ   3
28 #define BOX_ARG_REF1 4
29 #define BOX_ARG_REF2 5
30
31 class GEOMImpl_IBox
32 {
33  public:
34
35   GEOMImpl_IBox(Handle(GEOM_Function) theFunction): _func(theFunction) {}
36
37   void SetDX(double theX) { _func->SetReal(BOX_ARG_DX, theX); }
38
39   double GetDX() { return _func->GetReal(BOX_ARG_DX); }
40
41   void SetDY(double theY) { _func->SetReal(BOX_ARG_DY, theY); }
42
43   double GetDY() { return _func->GetReal(BOX_ARG_DY); }
44
45   void SetDZ(double theZ) { _func->SetReal(BOX_ARG_DZ, theZ); }
46
47   double GetDZ() { return _func->GetReal(BOX_ARG_DZ); }
48
49   void SetRef1(Handle(GEOM_Function) theRefPoint1) { _func->SetReference(BOX_ARG_REF1, theRefPoint1); }
50
51   Handle(GEOM_Function) GetRef1() { return _func->GetReference(BOX_ARG_REF1); }
52
53   void SetRef2(Handle(GEOM_Function) theRefPoint2) { _func->SetReference(BOX_ARG_REF2, theRefPoint2); }
54
55   Handle(GEOM_Function) GetRef2() { return _func->GetReference(BOX_ARG_REF2); }
56
57  private:
58
59   Handle(GEOM_Function) _func;
60 };