Salome HOME
Merge branch 'V9_9_BR'
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_Adaptive1D_i.cxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : StdMeshers_Adaptive1D_i.cxx
23 //  Module : SMESH
24 //
25
26 #include "StdMeshers_Adaptive1D_i.hxx"
27 #include "SMESH_Gen_i.hxx"
28 #include "SMESH_Gen.hxx"
29 #include "SMESH_PythonDump.hxx"
30
31 #include "StdMeshers_Adaptive1D.hxx"
32
33 #include "Utils_CorbaException.hxx"
34 #include "utilities.h"
35
36 //=======================================================================
37 //function : StdMeshers_Adaptive1D_i
38 //purpose  : Constructor
39 //=======================================================================
40
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 )
45 {
46   myBaseImpl = new ::StdMeshers_Adaptive1D( theGenImpl->GetANewId(),
47                                             theGenImpl );
48 }
49
50 //=======================================================================
51 //function : ~StdMeshers_Adaptive1D_i
52 //purpose  : Destructor
53 //=======================================================================
54
55 StdMeshers_Adaptive1D_i::~StdMeshers_Adaptive1D_i()
56 {
57 }
58
59 //=======================================================================
60 //function : SetMinSize
61 //purpose  : Sets minimal allowed segment length
62 //=======================================================================
63
64 void StdMeshers_Adaptive1D_i::SetMinSize( CORBA::Double minSegLen )
65 {
66   ASSERT( myBaseImpl );
67   try {
68     this->GetImpl()->SetMinSize( minSegLen );
69   }
70   catch ( SALOME_Exception& S_ex ) {
71     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
72   }
73
74   // Update Python script
75   SMESH::TPythonDump() << _this() << ".SetMinSize( " << SMESH::TVar(minSegLen) << " )";
76 }
77
78 //=======================================================================
79 //function : GetMinSize
80 //purpose  : Returns minimal allowed segment length
81 //=======================================================================
82
83 CORBA::Double StdMeshers_Adaptive1D_i::GetMinSize()
84 {
85   ASSERT( myBaseImpl );
86   return this->GetImpl()->GetMinSize();
87 }
88
89 //=======================================================================
90 //function : SetMaxSize
91 //purpose  : Sets maximal allowed segment length
92 //=======================================================================
93
94 void StdMeshers_Adaptive1D_i::SetMaxSize( CORBA::Double maxSegLen )
95 {
96   ASSERT( myBaseImpl );
97   try {
98     this->GetImpl()->SetMaxSize( maxSegLen );
99   }
100   catch ( SALOME_Exception& S_ex ) {
101     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
102   }
103
104   // Update Python script
105   SMESH::TPythonDump() << _this() << ".SetMaxSize( " << SMESH::TVar(maxSegLen) << " )";
106 }
107
108 //=======================================================================
109 //function : GetMaxSize
110 //purpose  : Returns maximal allowed segment length
111 //=======================================================================
112
113 CORBA::Double StdMeshers_Adaptive1D_i::GetMaxSize()
114 {
115   ASSERT( myBaseImpl );
116   return this->GetImpl()->GetMaxSize();
117 }
118
119 //=======================================================================
120 //function : SetDeflection
121 //purpose  : Sets a maximal allowed distance between a segment and an edge.
122 //=======================================================================
123
124 void StdMeshers_Adaptive1D_i::SetDeflection( CORBA::Double theValue )
125 {
126   ASSERT( myBaseImpl );
127   try {
128     this->GetImpl()->SetDeflection( theValue );
129   }
130   catch ( SALOME_Exception& S_ex ) {
131     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
132   }
133
134   // Update Python script
135   SMESH::TPythonDump() << _this() << ".SetDeflection( " << SMESH::TVar(theValue) << " )";
136 }
137
138 //=======================================================================
139 //function : GetDeflection
140 //purpose  : Returns deflection
141 //=======================================================================
142
143 CORBA::Double StdMeshers_Adaptive1D_i::GetDeflection()
144 {
145   ASSERT( myBaseImpl );
146   return this->GetImpl()->GetDeflection();
147 }
148
149 //=======================================================================
150 //function : GetImpl
151 //purpose  : Get implementation
152 //=======================================================================
153
154 ::StdMeshers_Adaptive1D* StdMeshers_Adaptive1D_i::GetImpl()
155 {
156   return ( ::StdMeshers_Adaptive1D* )myBaseImpl;
157 }
158
159 //=======================================================================
160 //function : IsDimSupported
161 //purpose  : Verify whether hypothesis supports given entity type
162 //=======================================================================
163
164 CORBA::Boolean StdMeshers_Adaptive1D_i::IsDimSupported( SMESH::Dimension type )
165 {
166   return type == SMESH::DIM_1D;
167 }