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 functions for the Blocks Multi-Transformations and repairing 00024 // 00025 #include "GEOM_Function.hxx" 00026 00027 #define TRSF_ORIGIN 1 00028 00029 #define TRSF_FACE_1_U 2 00030 #define TRSF_FACE_2_U 3 00031 #define TRSF_NBITER_U 4 00032 #define TRSF_FACE_1_V 5 00033 #define TRSF_FACE_2_V 6 00034 #define TRSF_NBITER_V 7 00035 00036 #define TRSF_NB_FACES 8 00037 00038 class GEOMImpl_IBlockTrsf 00039 { 00040 public: 00041 00042 GEOMImpl_IBlockTrsf (Handle(GEOM_Function) theFunction): _func(theFunction) {} 00043 00044 void SetOriginal (Handle(GEOM_Function) theOriginal) { _func->SetReference(TRSF_ORIGIN, theOriginal); } 00045 00046 Handle(GEOM_Function) GetOriginal() { return _func->GetReference(TRSF_ORIGIN); } 00047 00048 void SetFace1U (int theFaceId) { _func->SetInteger(TRSF_FACE_1_U, theFaceId); } 00049 void SetFace2U (int theFaceId) { _func->SetInteger(TRSF_FACE_2_U, theFaceId); } 00050 void SetFace1V (int theFaceId) { _func->SetInteger(TRSF_FACE_1_V, theFaceId); } 00051 void SetFace2V (int theFaceId) { _func->SetInteger(TRSF_FACE_2_V, theFaceId); } 00052 void SetNbIterU (int theNbIter) { _func->SetInteger(TRSF_NBITER_U, theNbIter); } 00053 void SetNbIterV (int theNbIter) { _func->SetInteger(TRSF_NBITER_V, theNbIter); } 00054 00055 void SetOptimumNbFaces (int theNbFaces) { _func->SetInteger(TRSF_NB_FACES, theNbFaces); } 00056 00057 int GetFace1U () { return _func->GetInteger(TRSF_FACE_1_U); } 00058 int GetFace2U () { return _func->GetInteger(TRSF_FACE_2_U); } 00059 int GetFace1V () { return _func->GetInteger(TRSF_FACE_1_V); } 00060 int GetFace2V () { return _func->GetInteger(TRSF_FACE_2_V); } 00061 int GetNbIterU() { return _func->GetInteger(TRSF_NBITER_U); } 00062 int GetNbIterV() { return _func->GetInteger(TRSF_NBITER_V); } 00063 00064 int GetOptimumNbFaces() { return _func->GetInteger(TRSF_NB_FACES); } 00065 00066 private: 00067 00068 Handle(GEOM_Function) _func; 00069 };