geom/src/GEOMImpl/GEOMImpl_IBlockTrsf.hxx

70 lines
2.6 KiB
C++
Raw Normal View History

2013-04-01 18:25:01 +06:00
// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2005-12-05 21:23:52 +05:00
//
2012-08-09 13:58:02 +06:00
//NOTE: This is an interface to a functions for the Blocks Multi-Transformations and repairing
2009-02-13 17:16:39 +05:00
//
2004-12-01 15:39:14 +05:00
#include "GEOM_Function.hxx"
#define TRSF_ORIGIN 1
#define TRSF_FACE_1_U 2
#define TRSF_FACE_2_U 3
#define TRSF_NBITER_U 4
#define TRSF_FACE_1_V 5
#define TRSF_FACE_2_V 6
#define TRSF_NBITER_V 7
2012-08-09 13:58:02 +06:00
#define TRSF_NB_FACES 8
2004-12-01 15:39:14 +05:00
class GEOMImpl_IBlockTrsf
{
public:
GEOMImpl_IBlockTrsf (Handle(GEOM_Function) theFunction): _func(theFunction) {}
void SetOriginal (Handle(GEOM_Function) theOriginal) { _func->SetReference(TRSF_ORIGIN, theOriginal); }
Handle(GEOM_Function) GetOriginal() { return _func->GetReference(TRSF_ORIGIN); }
void SetFace1U (int theFaceId) { _func->SetInteger(TRSF_FACE_1_U, theFaceId); }
void SetFace2U (int theFaceId) { _func->SetInteger(TRSF_FACE_2_U, theFaceId); }
void SetFace1V (int theFaceId) { _func->SetInteger(TRSF_FACE_1_V, theFaceId); }
void SetFace2V (int theFaceId) { _func->SetInteger(TRSF_FACE_2_V, theFaceId); }
void SetNbIterU (int theNbIter) { _func->SetInteger(TRSF_NBITER_U, theNbIter); }
void SetNbIterV (int theNbIter) { _func->SetInteger(TRSF_NBITER_V, theNbIter); }
2012-08-09 13:58:02 +06:00
void SetOptimumNbFaces (int theNbFaces) { _func->SetInteger(TRSF_NB_FACES, theNbFaces); }
2004-12-01 15:39:14 +05:00
int GetFace1U () { return _func->GetInteger(TRSF_FACE_1_U); }
int GetFace2U () { return _func->GetInteger(TRSF_FACE_2_U); }
int GetFace1V () { return _func->GetInteger(TRSF_FACE_1_V); }
int GetFace2V () { return _func->GetInteger(TRSF_FACE_2_V); }
int GetNbIterU() { return _func->GetInteger(TRSF_NBITER_U); }
int GetNbIterV() { return _func->GetInteger(TRSF_NBITER_V); }
2012-08-09 13:58:02 +06:00
int GetOptimumNbFaces() { return _func->GetInteger(TRSF_NB_FACES); }
2004-12-01 15:39:14 +05:00
private:
Handle(GEOM_Function) _func;
};