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 vector creation.
25 #include "GEOM_Function.hxx"
27 #define PLN_ARG_SIZE 1
29 #define PLN_ARG_PNT1 2
30 #define PLN_ARG_PNT2 3
31 #define PLN_ARG_PNT3 4
37 #define PLN_ARG_PARAM_U 7
39 #define PLN_ARG_PARAM_V 8
41 #define PLN_ARG_VEC1 9
42 #define PLN_ARG_VEC2 10
44 #define PLN_ARG_ORIENT 11
46 #define PLN_ARG_LCS 12
52 GEOMImpl_IPlane(Handle(GEOM_Function) theFunction): _func(theFunction) {}
54 void SetSize(double theSize) { _func->SetReal(PLN_ARG_SIZE, theSize); }
56 double GetSize() { return _func->GetReal(PLN_ARG_SIZE); }
58 void SetOrientation(double theOrientation) { _func->SetReal(PLN_ARG_ORIENT, theOrientation); }
60 double GetOrientation() { return _func->GetReal(PLN_ARG_ORIENT); }
62 void SetPoint (Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_PNT1, theRef); }
63 void SetVector(Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_VEC , theRef); }
64 void SetVector1(Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_VEC1 , theRef); }
65 void SetVector2(Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_VEC2 , theRef); }
67 void SetFace (Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_REF , theRef); }
68 void SetLCS (Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_LCS , theRef); }
70 void SetPoint1(Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_PNT1, theRef); }
71 void SetPoint2(Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_PNT2, theRef); }
72 void SetPoint3(Handle(GEOM_Function) theRef) { _func->SetReference(PLN_ARG_PNT3, theRef); }
74 Handle(GEOM_Function) GetPoint () { return _func->GetReference(PLN_ARG_PNT1); }
75 Handle(GEOM_Function) GetVector() { return _func->GetReference(PLN_ARG_VEC ); }
76 Handle(GEOM_Function) GetVector1() { return _func->GetReference(PLN_ARG_VEC1 ); }
77 Handle(GEOM_Function) GetVector2() { return _func->GetReference(PLN_ARG_VEC2 ); }
79 Handle(GEOM_Function) GetFace () { return _func->GetReference(PLN_ARG_REF ); }
80 Handle(GEOM_Function) GetLCS () { return _func->GetReference(PLN_ARG_LCS ); }
82 Handle(GEOM_Function) GetPoint1() { return _func->GetReference(PLN_ARG_PNT1); }
83 Handle(GEOM_Function) GetPoint2() { return _func->GetReference(PLN_ARG_PNT2); }
84 Handle(GEOM_Function) GetPoint3() { return _func->GetReference(PLN_ARG_PNT3); }
86 void SetParameterU(double theParamU) { _func->SetReal(PLN_ARG_PARAM_U, theParamU); }
87 double GetParameterU() { return _func->GetReal(PLN_ARG_PARAM_U); }
89 void SetParameterV(double theParamV) { _func->SetReal(PLN_ARG_PARAM_V, theParamV); }
90 double GetParameterV() { return _func->GetReal(PLN_ARG_PARAM_V); }
94 Handle(GEOM_Function) _func;