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 Box creation.
23 #include "GEOM_Function.hxx"
28 #define BOX_ARG_REF1 4
29 #define BOX_ARG_REF2 5
35 GEOMImpl_IBox(Handle(GEOM_Function) theFunction): _func(theFunction) {}
37 void SetDX(double theX) { _func->SetReal(BOX_ARG_DX, theX); }
39 double GetDX() { return _func->GetReal(BOX_ARG_DX); }
41 void SetDY(double theY) { _func->SetReal(BOX_ARG_DY, theY); }
43 double GetDY() { return _func->GetReal(BOX_ARG_DY); }
45 void SetDZ(double theZ) { _func->SetReal(BOX_ARG_DZ, theZ); }
47 double GetDZ() { return _func->GetReal(BOX_ARG_DZ); }
49 void SetRef1(Handle(GEOM_Function) theRefPoint1) { _func->SetReference(BOX_ARG_REF1, theRefPoint1); }
51 Handle(GEOM_Function) GetRef1() { return _func->GetReference(BOX_ARG_REF1); }
53 void SetRef2(Handle(GEOM_Function) theRefPoint2) { _func->SetReference(BOX_ARG_REF2, theRefPoint2); }
55 Handle(GEOM_Function) GetRef2() { return _func->GetReference(BOX_ARG_REF2); }
59 Handle(GEOM_Function) _func;