// Copyright (C) 2007-2020 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // // 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, or (at your option) any later version. // // 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. // // 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 // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // NETGENPlugin : C++ implementation // File : NETGENPlugin_Hypothesis_2D_i.hxx // Author : Michael Sazonov (OCN) // Date : 03/04/2006 // Project : SALOME //============================================================================= // #ifndef _NETGENPlugin_Hypothesis_2D_i_HXX_ #define _NETGENPlugin_Hypothesis_2D_i_HXX_ #include "NETGENPlugin_Defs.hxx" #include #include CORBA_SERVER_HEADER(NETGENPlugin_Algorithm) #include "NETGENPlugin_Hypothesis_i.hxx" #include "NETGENPlugin_Hypothesis_2D.hxx" class SMESH_Gen; // NETGENPlugin parameters hypothesis (2D case) class NETGENPLUGIN_EXPORT NETGENPlugin_Hypothesis_2D_i: public virtual POA_NETGENPlugin::NETGENPlugin_Hypothesis_2D, public NETGENPlugin_Hypothesis_i { public: // Constructor NETGENPlugin_Hypothesis_2D_i (PortableServer::POA_ptr thePOA, ::SMESH_Gen* theGenImpl); // Destructor virtual ~NETGENPlugin_Hypothesis_2D_i(); // Get implementation ::NETGENPlugin_Hypothesis_2D* GetImpl(); // Verify whether hypothesis supports given entity type CORBA::Boolean IsDimSupported( SMESH::Dimension type ); protected: // to remember whether a parameter is already set (issue 0021364) // enum SettingMethod // { // METH_SetQuadAllowed = NETGENPlugin_Hypothesis_i::METH_LAST * 2, // METH_LAST = METH_SetQuadAllowed // }; }; // NETGENPlugin_Remesher_2D parameters hypothesis class NETGENPLUGIN_EXPORT NETGENPlugin_RemesherHypothesis_2D_i: public virtual POA_NETGENPlugin::NETGENPlugin_RemesherHypothesis_2D, public NETGENPlugin_Hypothesis_2D_i { public: // Constructor NETGENPlugin_RemesherHypothesis_2D_i( PortableServer::POA_ptr thePOA, ::SMESH_Gen* theGenImpl); void SetRidgeAngle( CORBA::Double angle ); CORBA::Double GetRidgeAngle(); void SetEdgeCornerAngle( CORBA::Double angle ); CORBA::Double GetEdgeCornerAngle(); void SetChartAngle( CORBA::Double angle ); CORBA::Double GetChartAngle(); void SetOuterChartAngle( CORBA::Double angle ); CORBA::Double GetOuterChartAngle(); void SetRestHChartDistFactor( CORBA::Double f ); CORBA::Double GetRestHChartDistFactor(); void SetRestHChartDistEnable( CORBA::Boolean enable ); CORBA::Boolean GetRestHChartDistEnable(); void SetRestHLineLengthFactor( CORBA::Double f ); CORBA::Double GetRestHLineLengthFactor(); void SetRestHLineLengthEnable( CORBA::Boolean enable ); CORBA::Boolean GetRestHLineLengthEnable(); void SetRestHCloseEdgeFactor( CORBA::Double f ); CORBA::Double GetRestHCloseEdgeFactor(); void SetRestHCloseEdgeEnable( CORBA::Boolean enable ); CORBA::Boolean GetRestHCloseEdgeEnable(); void SetRestHSurfCurvFactor( CORBA::Double f ); CORBA::Double GetRestHSurfCurvFactor(); void SetRestHSurfCurvEnable( CORBA::Boolean enable ); CORBA::Boolean GetRestHSurfCurvEnable(); void SetRestHEdgeAngleFactor( CORBA::Double f ); CORBA::Double GetRestHEdgeAngleFactor(); void SetRestHEdgeAngleEnable( CORBA::Boolean enable ); CORBA::Boolean GetRestHEdgeAngleEnable(); void SetRestHSurfMeshCurvFactor( CORBA::Double f ); CORBA::Double GetRestHSurfMeshCurvFactor(); void SetRestHSurfMeshCurvEnable( CORBA::Boolean enable ); CORBA::Boolean GetRestHSurfMeshCurvEnable(); void SetKeepExistingEdges( CORBA::Boolean toKeep ); CORBA::Boolean GetKeepExistingEdges(); void SetMakeGroupsOfSurfaces( CORBA::Boolean toMake ); CORBA::Boolean GetMakeGroupsOfSurfaces(); void SetFixedEdgeGroup( SMESH::SMESH_GroupBase_ptr edgeGroup ); SMESH::SMESH_GroupBase_ptr GetFixedEdgeGroup( SMESH::SMESH_Mesh_ptr mesh ); void SetLoadMeshOnCancel( CORBA::Boolean toLoad ); CORBA::Boolean GetLoadMeshOnCancel(); // Get implementation ::NETGENPlugin_RemesherHypothesis_2D* GetImpl(); // Verify whether hypothesis supports given entity type CORBA::Boolean IsDimSupported( SMESH::Dimension type ); }; #endif