Salome HOME
Synchronize adm files
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_SimpleHypothesis_3D_i.cxx
1 // Copyright (C) 2007-2014  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   MESSAGE("NETGENPlugin_SimpleHypothesis_3D_i::LengthFromFaces");
80   ASSERT(myBaseImpl);
81   this->GetImpl()->LengthFromFaces();
82   SMESH::TPythonDump() << _this() << ".LengthFromFaces()";
83 }
84
85 //=============================================================================
86 /*!
87  *  NETGENPlugin_SimpleHypothesis_3D_i::SetMaxElementVolume()
88  */
89 //=============================================================================
90 void NETGENPlugin_SimpleHypothesis_3D_i::SetMaxElementVolume(CORBA::Double value)
91 {
92   MESSAGE("NETGENPlugin_SimpleHypothesis_3D_i::SetMaxElementVolume");
93   ASSERT(myBaseImpl);
94   this->GetImpl()->SetMaxElementVolume(value);
95   SMESH::TPythonDump() << _this() << ".SetMaxElementVolume( " << SMESH::TVar(value) << " )";
96 }
97
98
99 //=============================================================================
100 /*!
101  *  NETGENPlugin_SimpleHypothesis_3D_i::GetMaxElementVolume()
102  */
103 //=============================================================================
104 CORBA::Double NETGENPlugin_SimpleHypothesis_3D_i::GetMaxElementVolume()
105 {
106   MESSAGE("NETGENPlugin_SimpleHypothesis_3D_i::GetMaxElementVolume");
107   ASSERT(myBaseImpl);
108   return this->GetImpl()->GetMaxElementVolume();
109 }
110 //=============================================================================
111 /*!
112  *  NETGENPlugin_SimpleHypothesis_3D_i::GetImpl
113  */
114 //=============================================================================
115 ::NETGENPlugin_SimpleHypothesis_3D* NETGENPlugin_SimpleHypothesis_3D_i::GetImpl()
116 {
117   MESSAGE("NETGENPlugin_SimpleHypothesis_3D_i::GetImpl");
118   return (::NETGENPlugin_SimpleHypothesis_3D*)myBaseImpl;
119 }
120
121 //================================================================================
122 /*!
123  * \brief Verify whether hypothesis supports given entity type 
124   * \param type - dimension (see SMESH::Dimension enumeration)
125   * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
126  * 
127  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
128  */
129 //================================================================================  
130 CORBA::Boolean NETGENPlugin_SimpleHypothesis_3D_i::IsDimSupported( SMESH::Dimension type )
131 {
132   return type == SMESH::DIM_3D;
133 }