Salome HOME
Fix compilation warnings
[modules/smesh.git] / src / SMESH_I / SMESH_MeshEditor_i.hxx
1 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_MeshEditor_i.hxx
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef _SMESH_MESHEDITOR_I_HXX_
30 #define _SMESH_MESHEDIOTR_I_HXX_
31
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(SMESH_Mesh)
34
35 #include "SMESH_Mesh.hxx"
36
37 class SMESH_MeshEditor_i: public POA_SMESH::SMESH_MeshEditor
38 {
39  public:
40   SMESH_MeshEditor_i(SMESH_Mesh * theMesh);
41
42   virtual ~ SMESH_MeshEditor_i()
43   {
44   };
45
46   // --- CORBA
47   CORBA::Boolean RemoveElements(const SMESH::long_array & IDsOfElements);
48   CORBA::Boolean RemoveNodes(const SMESH::long_array & IDsOfNodes);
49
50   CORBA::Boolean AddNode(CORBA::Double x, CORBA::Double y, CORBA::Double z);
51   CORBA::Boolean AddEdge(const SMESH::long_array & IDsOfNodes);
52   CORBA::Boolean AddFace(const SMESH::long_array & IDsOfNodes);
53   CORBA::Boolean AddVolume(const SMESH::long_array & IDsOfNodes);
54
55   CORBA::Boolean AddPolyhedralVolume(const SMESH::long_array & IDsOfNodes,
56                                      const SMESH::long_array & Quantities);
57   CORBA::Boolean AddPolyhedralVolumeByFaces(const SMESH::long_array & IdsOfFaces);
58
59   CORBA::Boolean MoveNode(CORBA::Long NodeID,
60                           CORBA::Double x, CORBA::Double y, CORBA::Double z);
61
62   CORBA::Boolean InverseDiag(CORBA::Long NodeID1, CORBA::Long NodeID2);
63   CORBA::Boolean DeleteDiag(CORBA::Long NodeID1, CORBA::Long NodeID2);
64   CORBA::Boolean Reorient(const SMESH::long_array & IDsOfElements);
65   CORBA::Boolean ReorientObject(SMESH::SMESH_IDSource_ptr theObject);
66
67   CORBA::Boolean TriToQuad(const SMESH::long_array &   IDsOfElements,
68                            SMESH::NumericalFunctor_ptr Criterion,
69                            CORBA::Double               MaxAngle);
70   CORBA::Boolean TriToQuadObject(SMESH::SMESH_IDSource_ptr theObject,
71                                  SMESH::NumericalFunctor_ptr Criterion,
72                                  CORBA::Double               MaxAngle);
73   CORBA::Boolean QuadToTri(const SMESH::long_array &   IDsOfElements,
74                            SMESH::NumericalFunctor_ptr Criterion);
75   CORBA::Boolean SplitQuad(const SMESH::long_array & IDsOfElements,
76                            CORBA::Boolean            Diag13);
77   CORBA::Boolean SplitQuadObject(SMESH::SMESH_IDSource_ptr theObject,
78                                  CORBA::Boolean            Diag13);
79
80   CORBA::Boolean Smooth(const SMESH::long_array &              IDsOfElements,
81                         const SMESH::long_array &              IDsOfFixedNodes,
82                         CORBA::Long                            MaxNbOfIterations,
83                         CORBA::Double                          MaxAspectRatio,
84                         SMESH::SMESH_MeshEditor::Smooth_Method Method);
85   CORBA::Boolean SmoothObject(SMESH::SMESH_IDSource_ptr              theObject,
86                               const SMESH::long_array &              IDsOfFixedNodes,
87                               CORBA::Long                            MaxNbOfIterations,
88                               CORBA::Double                          MaxAspectRatio,
89                               SMESH::SMESH_MeshEditor::Smooth_Method Method);
90   CORBA::Boolean SmoothParametric(const SMESH::long_array &              IDsOfElements,
91                                   const SMESH::long_array &              IDsOfFixedNodes,
92                                   CORBA::Long                            MaxNbOfIterations,
93                                   CORBA::Double                          MaxAspectRatio,
94                                   SMESH::SMESH_MeshEditor::Smooth_Method Method);
95   CORBA::Boolean SmoothParametricObject(SMESH::SMESH_IDSource_ptr              theObject,
96                                         const SMESH::long_array &              IDsOfFixedNodes,
97                                         CORBA::Long                            MaxNbOfIterations,
98                                         CORBA::Double                          MaxAspectRatio,
99                                         SMESH::SMESH_MeshEditor::Smooth_Method Method);
100   CORBA::Boolean smooth(const SMESH::long_array &              IDsOfElements,
101                         const SMESH::long_array &              IDsOfFixedNodes,
102                         CORBA::Long                            MaxNbOfIterations,
103                         CORBA::Double                          MaxAspectRatio,
104                         SMESH::SMESH_MeshEditor::Smooth_Method Method,
105                         bool                                   IsParametric);
106   CORBA::Boolean smoothObject(SMESH::SMESH_IDSource_ptr              theObject,
107                               const SMESH::long_array &              IDsOfFixedNodes,
108                               CORBA::Long                            MaxNbOfIterations,
109                               CORBA::Double                          MaxAspectRatio,
110                               SMESH::SMESH_MeshEditor::Smooth_Method Method,
111                               bool                                   IsParametric);
112
113   void RenumberNodes();
114   void RenumberElements();
115
116   void RotationSweep(const SMESH::long_array & IDsOfElements,
117                      const SMESH::AxisStruct & Axis,
118                      CORBA::Double             AngleInRadians,
119                      CORBA::Long               NbOfSteps,
120                      CORBA::Double             Tolerance);
121   void RotationSweepObject(SMESH::SMESH_IDSource_ptr theObject,
122                            const SMESH::AxisStruct & Axis,
123                            CORBA::Double             AngleInRadians,
124                            CORBA::Long               NbOfSteps,
125                            CORBA::Double             Tolerance);
126
127   void ExtrusionSweep(const SMESH::long_array & IDsOfElements,
128                       const SMESH::DirStruct &  StepVector,
129                       CORBA::Long               NbOfSteps);
130   void ExtrusionSweepObject(SMESH::SMESH_IDSource_ptr theObject,
131                             const SMESH::DirStruct &  StepVector,
132                             CORBA::Long               NbOfSteps);
133   void ExtrusionSweepObject1D(SMESH::SMESH_IDSource_ptr theObject,
134                               const SMESH::DirStruct &  StepVector,
135                               CORBA::Long               NbOfSteps);
136   void ExtrusionSweepObject2D(SMESH::SMESH_IDSource_ptr theObject,
137                               const SMESH::DirStruct &  StepVector,
138                               CORBA::Long               NbOfSteps);
139   
140   SMESH::SMESH_MeshEditor::Extrusion_Error
141     ExtrusionAlongPath(const SMESH::long_array &   IDsOfElements,
142                        SMESH::SMESH_Mesh_ptr       PathMesh,
143                        GEOM::GEOM_Object_ptr       PathShape,
144                        CORBA::Long                 NodeStart,
145                        CORBA::Boolean              HasAngles,
146                        const SMESH::double_array & Angles,
147                        CORBA::Boolean              HasRefPoint,
148                        const SMESH::PointStruct &  RefPoint);
149   
150   SMESH::SMESH_MeshEditor::Extrusion_Error
151     ExtrusionAlongPathObject(SMESH::SMESH_IDSource_ptr   theObject,
152                              SMESH::SMESH_Mesh_ptr       PathMesh,
153                              GEOM::GEOM_Object_ptr       PathShape,
154                              CORBA::Long                 NodeStart,
155                              CORBA::Boolean              HasAngles,
156                              const SMESH::double_array & Angles,
157                              CORBA::Boolean              HasRefPoint,
158                              const SMESH::PointStruct &  RefPoint);
159
160   void Mirror(const SMESH::long_array &           IDsOfElements,
161               const SMESH::AxisStruct &           Axis,
162               SMESH::SMESH_MeshEditor::MirrorType MirrorType,
163               CORBA::Boolean                      Copy);
164   void MirrorObject(SMESH::SMESH_IDSource_ptr           theObject,
165                     const SMESH::AxisStruct &           Axis,
166                     SMESH::SMESH_MeshEditor::MirrorType MirrorType,
167                     CORBA::Boolean                      Copy);
168   void Translate(const SMESH::long_array & IDsOfElements,
169                  const SMESH::DirStruct &   Vector,
170                  CORBA::Boolean            Copy);
171   void TranslateObject(SMESH::SMESH_IDSource_ptr  theObject,
172                        const SMESH::DirStruct &   Vector,
173                        CORBA::Boolean             Copy);
174   void Rotate(const SMESH::long_array & IDsOfElements,
175               const SMESH::AxisStruct &  Axis,
176               CORBA::Double             Angle,
177               CORBA::Boolean            Copy);
178   void RotateObject(SMESH::SMESH_IDSource_ptr  theObject,
179                     const SMESH::AxisStruct &  Axis,
180                     CORBA::Double              Angle,
181                     CORBA::Boolean             Copy);
182
183   void FindCoincidentNodes (CORBA::Double                  Tolerance,
184                             SMESH::array_of_long_array_out GroupsOfNodes);
185   void MergeNodes (const SMESH::array_of_long_array& GroupsOfNodes);
186   void MergeEqualElements();
187
188   SMESH::SMESH_MeshEditor::Sew_Error
189     SewFreeBorders(CORBA::Long FirstNodeID1,
190                    CORBA::Long SecondNodeID1,
191                    CORBA::Long LastNodeID1,
192                    CORBA::Long FirstNodeID2,
193                    CORBA::Long SecondNodeID2,
194                    CORBA::Long LastNodeID2,
195                    CORBA::Boolean CreatePolygons,
196                    CORBA::Boolean CreatePolyedrs);
197   SMESH::SMESH_MeshEditor::Sew_Error
198     SewConformFreeBorders(CORBA::Long FirstNodeID1,
199                           CORBA::Long SecondNodeID1,
200                           CORBA::Long LastNodeID1,
201                           CORBA::Long FirstNodeID2,
202                           CORBA::Long SecondNodeID2);
203   SMESH::SMESH_MeshEditor::Sew_Error
204     SewBorderToSide(CORBA::Long FirstNodeIDOnFreeBorder,
205                     CORBA::Long SecondNodeIDOnFreeBorder,
206                     CORBA::Long LastNodeIDOnFreeBorder,
207                     CORBA::Long FirstNodeIDOnSide,
208                     CORBA::Long LastNodeIDOnSide,
209                     CORBA::Boolean CreatePolygons,
210                     CORBA::Boolean CreatePolyedrs);
211   SMESH::SMESH_MeshEditor::Sew_Error
212     SewSideElements(const SMESH::long_array& IDsOfSide1Elements,
213                     const SMESH::long_array& IDsOfSide2Elements,
214                     CORBA::Long NodeID1OfSide1ToMerge,
215                     CORBA::Long NodeID1OfSide2ToMerge,
216                     CORBA::Long NodeID2OfSide1ToMerge,
217                     CORBA::Long NodeID2OfSide2ToMerge);
218
219  private:
220   SMESHDS_Mesh * GetMeshDS() { return _myMesh->GetMeshDS(); }
221   SMESH_Mesh   *_myMesh;
222 };
223
224 #endif