Salome HOME
PAL10196. Make SetId() public
[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   // Split/Join faces
68   CORBA::Boolean TriToQuad       (const SMESH::long_array &   IDsOfElements,
69                                   SMESH::NumericalFunctor_ptr Criterion,
70                                   CORBA::Double               MaxAngle);
71   CORBA::Boolean TriToQuadObject (SMESH::SMESH_IDSource_ptr   theObject,
72                                   SMESH::NumericalFunctor_ptr Criterion,
73                                   CORBA::Double               MaxAngle);
74   CORBA::Boolean QuadToTri       (const SMESH::long_array &   IDsOfElements,
75                                   SMESH::NumericalFunctor_ptr Criterion);
76   CORBA::Boolean QuadToTriObject (SMESH::SMESH_IDSource_ptr   theObject,
77                                   SMESH::NumericalFunctor_ptr Criterion);
78   CORBA::Boolean SplitQuad       (const SMESH::long_array &   IDsOfElements,
79                                   CORBA::Boolean              Diag13);
80   CORBA::Boolean SplitQuadObject (SMESH::SMESH_IDSource_ptr   theObject,
81                                   CORBA::Boolean              Diag13);
82   CORBA::Long    BestSplit       (CORBA::Long                 IDOfQuad,
83                                   SMESH::NumericalFunctor_ptr Criterion);
84
85   CORBA::Boolean Smooth(const SMESH::long_array &              IDsOfElements,
86                         const SMESH::long_array &              IDsOfFixedNodes,
87                         CORBA::Long                            MaxNbOfIterations,
88                         CORBA::Double                          MaxAspectRatio,
89                         SMESH::SMESH_MeshEditor::Smooth_Method Method);
90   CORBA::Boolean SmoothObject(SMESH::SMESH_IDSource_ptr              theObject,
91                               const SMESH::long_array &              IDsOfFixedNodes,
92                               CORBA::Long                            MaxNbOfIterations,
93                               CORBA::Double                          MaxAspectRatio,
94                               SMESH::SMESH_MeshEditor::Smooth_Method Method);
95   CORBA::Boolean SmoothParametric(const SMESH::long_array &              IDsOfElements,
96                                   const SMESH::long_array &              IDsOfFixedNodes,
97                                   CORBA::Long                            MaxNbOfIterations,
98                                   CORBA::Double                          MaxAspectRatio,
99                                   SMESH::SMESH_MeshEditor::Smooth_Method Method);
100   CORBA::Boolean SmoothParametricObject(SMESH::SMESH_IDSource_ptr              theObject,
101                                         const SMESH::long_array &              IDsOfFixedNodes,
102                                         CORBA::Long                            MaxNbOfIterations,
103                                         CORBA::Double                          MaxAspectRatio,
104                                         SMESH::SMESH_MeshEditor::Smooth_Method Method);
105   CORBA::Boolean smooth(const SMESH::long_array &              IDsOfElements,
106                         const SMESH::long_array &              IDsOfFixedNodes,
107                         CORBA::Long                            MaxNbOfIterations,
108                         CORBA::Double                          MaxAspectRatio,
109                         SMESH::SMESH_MeshEditor::Smooth_Method Method,
110                         bool                                   IsParametric);
111   CORBA::Boolean smoothObject(SMESH::SMESH_IDSource_ptr              theObject,
112                               const SMESH::long_array &              IDsOfFixedNodes,
113                               CORBA::Long                            MaxNbOfIterations,
114                               CORBA::Double                          MaxAspectRatio,
115                               SMESH::SMESH_MeshEditor::Smooth_Method Method,
116                               bool                                   IsParametric);
117
118   void RenumberNodes();
119   void RenumberElements();
120
121   void RotationSweep(const SMESH::long_array & IDsOfElements,
122                      const SMESH::AxisStruct & Axis,
123                      CORBA::Double             AngleInRadians,
124                      CORBA::Long               NbOfSteps,
125                      CORBA::Double             Tolerance);
126   void RotationSweepObject(SMESH::SMESH_IDSource_ptr theObject,
127                            const SMESH::AxisStruct & Axis,
128                            CORBA::Double             AngleInRadians,
129                            CORBA::Long               NbOfSteps,
130                            CORBA::Double             Tolerance);
131
132   void ExtrusionSweep(const SMESH::long_array & IDsOfElements,
133                       const SMESH::DirStruct &  StepVector,
134                       CORBA::Long               NbOfSteps);
135   void ExtrusionSweepObject(SMESH::SMESH_IDSource_ptr theObject,
136                             const SMESH::DirStruct &  StepVector,
137                             CORBA::Long               NbOfSteps);
138   void ExtrusionSweepObject1D(SMESH::SMESH_IDSource_ptr theObject,
139                               const SMESH::DirStruct &  StepVector,
140                               CORBA::Long               NbOfSteps);
141   void ExtrusionSweepObject2D(SMESH::SMESH_IDSource_ptr theObject,
142                               const SMESH::DirStruct &  StepVector,
143                               CORBA::Long               NbOfSteps);
144
145   SMESH::SMESH_MeshEditor::Extrusion_Error
146     ExtrusionAlongPath(const SMESH::long_array &   IDsOfElements,
147                        SMESH::SMESH_Mesh_ptr       PathMesh,
148                        GEOM::GEOM_Object_ptr       PathShape,
149                        CORBA::Long                 NodeStart,
150                        CORBA::Boolean              HasAngles,
151                        const SMESH::double_array & Angles,
152                        CORBA::Boolean              HasRefPoint,
153                        const SMESH::PointStruct &  RefPoint);
154
155   SMESH::SMESH_MeshEditor::Extrusion_Error
156     ExtrusionAlongPathObject(SMESH::SMESH_IDSource_ptr   theObject,
157                              SMESH::SMESH_Mesh_ptr       PathMesh,
158                              GEOM::GEOM_Object_ptr       PathShape,
159                              CORBA::Long                 NodeStart,
160                              CORBA::Boolean              HasAngles,
161                              const SMESH::double_array & Angles,
162                              CORBA::Boolean              HasRefPoint,
163                              const SMESH::PointStruct &  RefPoint);
164
165   void Mirror(const SMESH::long_array &           IDsOfElements,
166               const SMESH::AxisStruct &           Axis,
167               SMESH::SMESH_MeshEditor::MirrorType MirrorType,
168               CORBA::Boolean                      Copy);
169   void MirrorObject(SMESH::SMESH_IDSource_ptr           theObject,
170                     const SMESH::AxisStruct &           Axis,
171                     SMESH::SMESH_MeshEditor::MirrorType MirrorType,
172                     CORBA::Boolean                      Copy);
173   void Translate(const SMESH::long_array & IDsOfElements,
174                  const SMESH::DirStruct &   Vector,
175                  CORBA::Boolean            Copy);
176   void TranslateObject(SMESH::SMESH_IDSource_ptr  theObject,
177                        const SMESH::DirStruct &   Vector,
178                        CORBA::Boolean             Copy);
179   void Rotate(const SMESH::long_array & IDsOfElements,
180               const SMESH::AxisStruct &  Axis,
181               CORBA::Double             Angle,
182               CORBA::Boolean            Copy);
183   void RotateObject(SMESH::SMESH_IDSource_ptr  theObject,
184                     const SMESH::AxisStruct &  Axis,
185                     CORBA::Double              Angle,
186                     CORBA::Boolean             Copy);
187
188   void FindCoincidentNodes (CORBA::Double                  Tolerance,
189                             SMESH::array_of_long_array_out GroupsOfNodes);
190   void MergeNodes (const SMESH::array_of_long_array& GroupsOfNodes);
191   void MergeEqualElements();
192
193   SMESH::SMESH_MeshEditor::Sew_Error
194     SewFreeBorders(CORBA::Long FirstNodeID1,
195                    CORBA::Long SecondNodeID1,
196                    CORBA::Long LastNodeID1,
197                    CORBA::Long FirstNodeID2,
198                    CORBA::Long SecondNodeID2,
199                    CORBA::Long LastNodeID2,
200                    CORBA::Boolean CreatePolygons,
201                    CORBA::Boolean CreatePolyedrs);
202   SMESH::SMESH_MeshEditor::Sew_Error
203     SewConformFreeBorders(CORBA::Long FirstNodeID1,
204                           CORBA::Long SecondNodeID1,
205                           CORBA::Long LastNodeID1,
206                           CORBA::Long FirstNodeID2,
207                           CORBA::Long SecondNodeID2);
208   SMESH::SMESH_MeshEditor::Sew_Error
209     SewBorderToSide(CORBA::Long FirstNodeIDOnFreeBorder,
210                     CORBA::Long SecondNodeIDOnFreeBorder,
211                     CORBA::Long LastNodeIDOnFreeBorder,
212                     CORBA::Long FirstNodeIDOnSide,
213                     CORBA::Long LastNodeIDOnSide,
214                     CORBA::Boolean CreatePolygons,
215                     CORBA::Boolean CreatePolyedrs);
216   SMESH::SMESH_MeshEditor::Sew_Error
217     SewSideElements(const SMESH::long_array& IDsOfSide1Elements,
218                     const SMESH::long_array& IDsOfSide2Elements,
219                     CORBA::Long NodeID1OfSide1ToMerge,
220                     CORBA::Long NodeID1OfSide2ToMerge,
221                     CORBA::Long NodeID2OfSide1ToMerge,
222                     CORBA::Long NodeID2OfSide2ToMerge);
223
224  private:
225   SMESHDS_Mesh * GetMeshDS() { return _myMesh->GetMeshDS(); }
226   SMESH_Mesh   *_myMesh;
227 };
228
229 #endif