Salome HOME
Merge branch 'V8_5_BR'
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_SimpleHypothesis_3D_i.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  NETGENPlugin : C++ implementation
21 // File      : NETGENPlugin_SimpleHypothesis_3D_i.cxx
22 // Author    : Edward AGAPOV
23 // Project   : SALOME
24 //=============================================================================
25 //
26 #include "NETGENPlugin_SimpleHypothesis_3D_i.hxx"
27 #include "NETGENPlugin_SimpleHypothesis_3D.hxx"
28
29 #include <SMESH_Gen.hxx>
30 #include <SMESH_PythonDump.hxx>
31
32 #include <Utils_CorbaException.hxx>
33 #include <utilities.h>
34
35 using namespace std;
36
37 //=============================================================================
38 /*!
39  *  NETGENPlugin_SimpleHypothesis_3D_i::NETGENPlugin_SimpleHypothesis_3D_i
40  *
41  *  Constructor
42  */
43 //=============================================================================
44 NETGENPlugin_SimpleHypothesis_3D_i::
45 NETGENPlugin_SimpleHypothesis_3D_i (PortableServer::POA_ptr thePOA,
46                                     int                     theStudyId,
47                                     ::SMESH_Gen*            theGenImpl)
48   : SALOME::GenericObj_i( thePOA ),
49     SMESH_Hypothesis_i( thePOA ),
50     NETGENPlugin_SimpleHypothesis_2D_i( thePOA,theStudyId,theGenImpl )
51 {
52   //MESSAGE( "NETGENPlugin_SimpleHypothesis_3D_i::NETGENPlugin_SimpleHypothesis_3D_i" );
53   if ( myBaseImpl )
54     delete myBaseImpl;
55   myBaseImpl = new ::NETGENPlugin_SimpleHypothesis_3D (theGenImpl->GetANewId(),
56                                                        theStudyId,
57                                                        theGenImpl);
58 }
59
60 //=============================================================================
61 /*!
62  *  NETGENPlugin_SimpleHypothesis_3D_i::~NETGENPlugin_SimpleHypothesis_3D_i
63  *
64  *  Destructor
65  */
66 //=============================================================================
67 NETGENPlugin_SimpleHypothesis_3D_i::~NETGENPlugin_SimpleHypothesis_3D_i()
68 {
69   //MESSAGE( "NETGENPlugin_SimpleHypothesis_3D_i::~NETGENPlugin_SimpleHypothesis_3D_i" );
70 }
71
72 //=============================================================================
73 /*!
74  *  NETGENPlugin_SimpleHypothesis_3D_i::LengthFromFaces()
75  */
76 //=============================================================================
77 void NETGENPlugin_SimpleHypothesis_3D_i::LengthFromFaces()
78 {
79   ASSERT(myBaseImpl);
80   this->GetImpl()->LengthFromFaces();
81   SMESH::TPythonDump() << _this() << ".LengthFromFaces()";
82 }
83
84 //=============================================================================
85 /*!
86  *  NETGENPlugin_SimpleHypothesis_3D_i::SetMaxElementVolume()
87  */
88 //=============================================================================
89 void NETGENPlugin_SimpleHypothesis_3D_i::SetMaxElementVolume(CORBA::Double value)
90 {
91   ASSERT(myBaseImpl);
92   this->GetImpl()->SetMaxElementVolume(value);
93   SMESH::TPythonDump() << _this() << ".SetMaxElementVolume( " << SMESH::TVar(value) << " )";
94 }
95
96
97 //=============================================================================
98 /*!
99  *  NETGENPlugin_SimpleHypothesis_3D_i::GetMaxElementVolume()
100  */
101 //=============================================================================
102 CORBA::Double NETGENPlugin_SimpleHypothesis_3D_i::GetMaxElementVolume()
103 {
104   ASSERT(myBaseImpl);
105   return this->GetImpl()->GetMaxElementVolume();
106 }
107 //=============================================================================
108 /*!
109  *  NETGENPlugin_SimpleHypothesis_3D_i::GetImpl
110  */
111 //=============================================================================
112 ::NETGENPlugin_SimpleHypothesis_3D* NETGENPlugin_SimpleHypothesis_3D_i::GetImpl()
113 {
114   return (::NETGENPlugin_SimpleHypothesis_3D*)myBaseImpl;
115 }
116
117 //================================================================================
118 /*!
119  * \brief Verify whether hypothesis supports given entity type 
120   * \param type - dimension (see SMESH::Dimension enumeration)
121   * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
122  * 
123  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
124  */
125 //================================================================================  
126 CORBA::Boolean NETGENPlugin_SimpleHypothesis_3D_i::IsDimSupported( SMESH::Dimension type )
127 {
128   return type == SMESH::DIM_3D;
129 }