Salome HOME
Update copyright
[modules/smesh.git] / src / StdMeshers / StdMeshers_QuadrangleParams.cxx
1 // Copyright (C) 2007-2011  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.
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 //  File   : StdMeshers_QuadrangleParams.cxx
20 //  Author : Sergey KUUL, OCC
21 //  Module : SMESH
22
23 #include "StdMeshers_QuadrangleParams.hxx"
24
25 #include "SMESH_Algo.hxx"
26 #include "SMESH_Mesh.hxx"
27
28 #include <BRep_Tool.hxx>
29 #include <GCPnts_AbscissaPoint.hxx>
30 #include <GeomAdaptor_Curve.hxx>
31 #include <Geom_Curve.hxx>
32 #include <TopExp.hxx>
33 #include <TopLoc_Location.hxx>
34 #include <TopTools_IndexedMapOfShape.hxx>
35 #include <TopoDS.hxx>
36 #include <TopoDS_Edge.hxx>
37
38 using namespace std;
39
40 //=============================================================================
41 /*!
42  *
43  */
44 //=============================================================================
45 StdMeshers_QuadrangleParams::StdMeshers_QuadrangleParams(int hypId, int studyId,
46                                                          SMESH_Gen * gen)
47   : SMESH_Hypothesis(hypId, studyId, gen)
48 {
49   _name = "QuadrangleParams";
50   _param_algo_dim = 2;
51   _triaVertexID = -1;
52   _quadType = QUAD_STANDARD;
53 }
54
55 //=============================================================================
56 /*!
57  *
58  */
59 //=============================================================================
60 StdMeshers_QuadrangleParams::~StdMeshers_QuadrangleParams()
61 {
62 }
63
64 //=============================================================================
65 /*!
66  *
67  */
68 //=============================================================================
69 void StdMeshers_QuadrangleParams::SetTriaVertex (int id)
70 {
71   if (id != _triaVertexID) {
72     _triaVertexID = id;
73     NotifySubMeshesHypothesisModification();
74   }
75 }
76
77 //=============================================================================
78 /*!
79  *
80  */
81 //=============================================================================
82 void StdMeshers_QuadrangleParams::SetQuadType (StdMeshers_QuadType type)
83 {
84   if (type != _quadType) {
85     _quadType = type;
86     NotifySubMeshesHypothesisModification();
87   }
88 }
89
90 //=============================================================================
91 /*!
92  *
93  */
94 //=============================================================================
95 ostream & StdMeshers_QuadrangleParams::SaveTo(ostream & save)
96 {
97   if (_objEntry.size() == 0)
98     save << _triaVertexID << " UNDEFINED " << int(_quadType);
99   else
100     save << _triaVertexID << " " << _objEntry << " " << int(_quadType);
101   return save;
102 }
103
104 //=============================================================================
105 /*!
106  *
107  */
108 //=============================================================================
109 istream & StdMeshers_QuadrangleParams::LoadFrom(istream & load)
110 {
111   bool isOK = true;
112   isOK = (load >> _triaVertexID);
113   if (!isOK)
114     load.clear(ios::badbit | load.rdstate());
115
116   isOK = (load >> _objEntry);
117   if (!isOK)
118     load.clear(ios::badbit | load.rdstate());
119
120   int type;
121   isOK = (load >> type);
122   if (isOK)
123     _quadType = StdMeshers_QuadType(type);
124
125   return load;
126 }
127
128 //=============================================================================
129 /*!
130  *
131  */
132 //=============================================================================
133 ostream & operator <<(ostream & save, StdMeshers_QuadrangleParams & hyp)
134 {
135   return hyp.SaveTo( save );
136 }
137
138 //=============================================================================
139 /*!
140  *
141  */
142 //=============================================================================
143 istream & operator >>(istream & load, StdMeshers_QuadrangleParams & hyp)
144 {
145   return hyp.LoadFrom( load );
146 }
147
148 //================================================================================
149 /*!
150  * \brief Redifined method
151  * \param theMesh - the built mesh
152  * \param theShape - the geometry of interest
153  * \retval bool - true if parameter values have been successfully defined
154  */
155 //================================================================================
156 bool StdMeshers_QuadrangleParams::SetParametersByMesh(const SMESH_Mesh* theMesh,
157                                                       const TopoDS_Shape& theShape)
158 {
159   if ( !theMesh || theShape.IsNull() )
160     return false;
161
162   return true;
163 }
164
165 //================================================================================
166 /*!
167  * \brief Initialize my parameter values by default parameters.
168  *  \retval bool - true if parameter values have been successfully defined
169  */
170 //================================================================================
171 bool StdMeshers_QuadrangleParams::SetParametersByDefaults(const TDefaults&  dflts,
172                                                           const SMESH_Mesh* /*mesh*/)
173 {
174   return true;
175 }