00001 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00002 // 00003 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, 00004 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 00005 // 00006 // This library is free software; you can redistribute it and/or 00007 // modify it under the terms of the GNU Lesser General Public 00008 // License as published by the Free Software Foundation; either 00009 // version 2.1 of the License. 00010 // 00011 // This library is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 // Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public 00017 // License along with this library; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 // 00020 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00021 // 00022 00023 //NOTE: This is an interface to a function for the Fillet and creation. 00024 // 00025 #include "GEOM_Function.hxx" 00026 00027 #define FILLET_ARG_SH 1 00028 #define FILLET_ARG_R 2 00029 #define FILLET_ARG_R1 4 00030 #define FILLET_ARG_R2 5 00031 #define FILLET_ARG_LENG 3 00032 #define FILLET_ARG_LAST 3 00033 00034 class GEOMImpl_IFillet 00035 { 00036 public: 00037 00038 GEOMImpl_IFillet(Handle(GEOM_Function) theFunction): _func(theFunction) {} 00039 00040 void SetShape(Handle(GEOM_Function) theRef) { _func->SetReference(FILLET_ARG_SH, theRef); } 00041 00042 Handle(GEOM_Function) GetShape() { return _func->GetReference(FILLET_ARG_SH); } 00043 00044 void SetR(double theR) { _func->SetReal(FILLET_ARG_R, theR); } 00045 void SetR1(double theR1) { _func->SetReal(FILLET_ARG_R1, theR1); } 00046 void SetR2(double theR2) { _func->SetReal(FILLET_ARG_R2, theR2); } 00047 00048 double GetR() { return _func->GetReal(FILLET_ARG_R); } 00049 double GetR1() { return _func->GetReal(FILLET_ARG_R1); } 00050 double GetR2() { return _func->GetReal(FILLET_ARG_R2); } 00051 00052 void SetLength(int theLen) { _func->SetInteger(FILLET_ARG_LENG, theLen); } 00053 00054 int GetLength() { return _func->GetInteger(FILLET_ARG_LENG); } 00055 00056 void SetEdge(int theInd, int theEdge) 00057 { _func->SetInteger(FILLET_ARG_LAST + theInd, theEdge); } 00058 void SetFace(int theInd, int theFace) 00059 { _func->SetInteger(FILLET_ARG_LAST + theInd, theFace); } 00060 00061 int GetEdge(int theInd) { return _func->GetInteger(FILLET_ARG_LAST + theInd); } 00062 int GetFace(int theInd) { return _func->GetInteger(FILLET_ARG_LAST + theInd); } 00063 00064 private: 00065 00066 Handle(GEOM_Function) _func; 00067 };