1 // Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // File : StdMeshers_Adaptive1D_i.cxx
26 #include "StdMeshers_Adaptive1D_i.hxx"
27 #include "SMESH_Gen_i.hxx"
28 #include "SMESH_Gen.hxx"
29 #include "SMESH_PythonDump.hxx"
31 #include "StdMeshers_Adaptive1D.hxx"
33 #include "Utils_CorbaException.hxx"
34 #include "utilities.h"
36 //=======================================================================
37 //function : StdMeshers_Adaptive1D_i
38 //purpose : Constructor
39 //=======================================================================
41 StdMeshers_Adaptive1D_i::StdMeshers_Adaptive1D_i( PortableServer::POA_ptr thePOA,
42 ::SMESH_Gen* theGenImpl )
43 : SALOME::GenericObj_i( thePOA ),
44 SMESH_Hypothesis_i( thePOA )
46 myBaseImpl = new ::StdMeshers_Adaptive1D( theGenImpl->GetANewId(),
50 //=======================================================================
51 //function : ~StdMeshers_Adaptive1D_i
52 //purpose : Destructor
53 //=======================================================================
55 StdMeshers_Adaptive1D_i::~StdMeshers_Adaptive1D_i()
59 //=======================================================================
60 //function : SetMinSize
61 //purpose : Sets minimal allowed segment length
62 //=======================================================================
64 void StdMeshers_Adaptive1D_i::SetMinSize( CORBA::Double minSegLen )
68 this->GetImpl()->SetMinSize( minSegLen );
70 catch ( SALOME_Exception& S_ex ) {
71 THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
74 // Update Python script
75 SMESH::TPythonDump() << _this() << ".SetMinSize( " << SMESH::TVar(minSegLen) << " )";
78 //=======================================================================
79 //function : GetMinSize
80 //purpose : Returns minimal allowed segment length
81 //=======================================================================
83 CORBA::Double StdMeshers_Adaptive1D_i::GetMinSize()
86 return this->GetImpl()->GetMinSize();
89 //=======================================================================
90 //function : SetMaxSize
91 //purpose : Sets maximal allowed segment length
92 //=======================================================================
94 void StdMeshers_Adaptive1D_i::SetMaxSize( CORBA::Double maxSegLen )
98 this->GetImpl()->SetMaxSize( maxSegLen );
100 catch ( SALOME_Exception& S_ex ) {
101 THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
104 // Update Python script
105 SMESH::TPythonDump() << _this() << ".SetMaxSize( " << SMESH::TVar(maxSegLen) << " )";
108 //=======================================================================
109 //function : GetMaxSize
110 //purpose : Returns maximal allowed segment length
111 //=======================================================================
113 CORBA::Double StdMeshers_Adaptive1D_i::GetMaxSize()
115 ASSERT( myBaseImpl );
116 return this->GetImpl()->GetMaxSize();
119 //=======================================================================
120 //function : SetDeflection
121 //purpose : Sets a maximal allowed distance between a segment and an edge.
122 //=======================================================================
124 void StdMeshers_Adaptive1D_i::SetDeflection( CORBA::Double theValue )
126 ASSERT( myBaseImpl );
128 this->GetImpl()->SetDeflection( theValue );
130 catch ( SALOME_Exception& S_ex ) {
131 THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
134 // Update Python script
135 SMESH::TPythonDump() << _this() << ".SetDeflection( " << SMESH::TVar(theValue) << " )";
138 //=======================================================================
139 //function : GetDeflection
140 //purpose : Returns deflection
141 //=======================================================================
143 CORBA::Double StdMeshers_Adaptive1D_i::GetDeflection()
145 ASSERT( myBaseImpl );
146 return this->GetImpl()->GetDeflection();
149 //=======================================================================
151 //purpose : Get implementation
152 //=======================================================================
154 ::StdMeshers_Adaptive1D* StdMeshers_Adaptive1D_i::GetImpl()
156 return ( ::StdMeshers_Adaptive1D* )myBaseImpl;
159 //=======================================================================
160 //function : IsDimSupported
161 //purpose : Verify whether hypothesis supports given entity type
162 //=======================================================================
164 CORBA::Boolean StdMeshers_Adaptive1D_i::IsDimSupported( SMESH::Dimension type )
166 return type == SMESH::DIM_1D;