00001 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00002 // 00003 // This library is free software; you can redistribute it and/or 00004 // modify it under the terms of the GNU Lesser General Public 00005 // License as published by the Free Software Foundation; either 00006 // version 2.1 of the License. 00007 // 00008 // This library is distributed in the hope that it will be useful, 00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 // Lesser General Public License for more details. 00012 // 00013 // You should have received a copy of the GNU Lesser General Public 00014 // License along with this library; if not, write to the Free Software 00015 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00016 // 00017 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00018 // 00019 00020 //NOTE: This is an interface to a function for the Fillet1d and creation. 00021 // 00022 #include "GEOM_Function.hxx" 00023 00024 #define FILLET1D_ARG_SH 1 00025 #define FILLET1D_ARG_R 2 00026 #define FILLET1D_ARG_LENG 3 00027 #define FILLET1D_ARG_LAST 4 00028 00029 class GEOMImpl_IFillet1d 00030 { 00031 public: 00032 00033 GEOMImpl_IFillet1d(Handle(GEOM_Function) theFunction): _func(theFunction) {} 00034 00035 void SetShape(Handle(GEOM_Function) theRef) { _func->SetReference(FILLET1D_ARG_SH, theRef); } 00036 Handle(GEOM_Function) GetShape() { return _func->GetReference(FILLET1D_ARG_SH); } 00037 00038 void SetR(double theR) { _func->SetReal(FILLET1D_ARG_R, theR); } 00039 void SetLength(int theLen) { _func->SetInteger(FILLET1D_ARG_LENG, theLen); } 00040 void SetVertex(int theInd, int theVertex) 00041 { _func->SetInteger(FILLET1D_ARG_LAST + theInd, theVertex); } 00042 00043 double GetR() { return _func->GetReal(FILLET1D_ARG_R); } 00044 int GetLength() { return _func->GetInteger(FILLET1D_ARG_LENG); } 00045 int GetVertex(int theInd) { return _func->GetInteger(FILLET1D_ARG_LAST + theInd); } 00046 00047 private: 00048 00049 Handle(GEOM_Function) _func; 00050 };