Salome HOME
Improvement of extrusion functionality
[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   void AdvancedExtrusion(const SMESH::long_array & theIDsOfElements,
145                          const SMESH::DirStruct &  theStepVector,
146                          CORBA::Long               theNbOfSteps,
147                          CORBA::Long               theExtrFlags,
148                          CORBA::Double             theSewTolerance);
149
150   SMESH::SMESH_MeshEditor::Extrusion_Error
151     ExtrusionAlongPath(const SMESH::long_array &   IDsOfElements,
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   SMESH::SMESH_MeshEditor::Extrusion_Error
161     ExtrusionAlongPathObject(SMESH::SMESH_IDSource_ptr   theObject,
162                              SMESH::SMESH_Mesh_ptr       PathMesh,
163                              GEOM::GEOM_Object_ptr       PathShape,
164                              CORBA::Long                 NodeStart,
165                              CORBA::Boolean              HasAngles,
166                              const SMESH::double_array & Angles,
167                              CORBA::Boolean              HasRefPoint,
168                              const SMESH::PointStruct &  RefPoint);
169
170   void Mirror(const SMESH::long_array &           IDsOfElements,
171               const SMESH::AxisStruct &           Axis,
172               SMESH::SMESH_MeshEditor::MirrorType MirrorType,
173               CORBA::Boolean                      Copy);
174   void MirrorObject(SMESH::SMESH_IDSource_ptr           theObject,
175                     const SMESH::AxisStruct &           Axis,
176                     SMESH::SMESH_MeshEditor::MirrorType MirrorType,
177                     CORBA::Boolean                      Copy);
178   void Translate(const SMESH::long_array & IDsOfElements,
179                  const SMESH::DirStruct &   Vector,
180                  CORBA::Boolean            Copy);
181   void TranslateObject(SMESH::SMESH_IDSource_ptr  theObject,
182                        const SMESH::DirStruct &   Vector,
183                        CORBA::Boolean             Copy);
184   void Rotate(const SMESH::long_array & IDsOfElements,
185               const SMESH::AxisStruct &  Axis,
186               CORBA::Double             Angle,
187               CORBA::Boolean            Copy);
188   void RotateObject(SMESH::SMESH_IDSource_ptr  theObject,
189                     const SMESH::AxisStruct &  Axis,
190                     CORBA::Double              Angle,
191                     CORBA::Boolean             Copy);
192
193   void FindCoincidentNodes (CORBA::Double                  Tolerance,
194                             SMESH::array_of_long_array_out GroupsOfNodes);
195   void MergeNodes (const SMESH::array_of_long_array& GroupsOfNodes);
196   void MergeEqualElements();
197
198   SMESH::SMESH_MeshEditor::Sew_Error
199     SewFreeBorders(CORBA::Long FirstNodeID1,
200                    CORBA::Long SecondNodeID1,
201                    CORBA::Long LastNodeID1,
202                    CORBA::Long FirstNodeID2,
203                    CORBA::Long SecondNodeID2,
204                    CORBA::Long LastNodeID2,
205                    CORBA::Boolean CreatePolygons,
206                    CORBA::Boolean CreatePolyedrs);
207   SMESH::SMESH_MeshEditor::Sew_Error
208     SewConformFreeBorders(CORBA::Long FirstNodeID1,
209                           CORBA::Long SecondNodeID1,
210                           CORBA::Long LastNodeID1,
211                           CORBA::Long FirstNodeID2,
212                           CORBA::Long SecondNodeID2);
213   SMESH::SMESH_MeshEditor::Sew_Error
214     SewBorderToSide(CORBA::Long FirstNodeIDOnFreeBorder,
215                     CORBA::Long SecondNodeIDOnFreeBorder,
216                     CORBA::Long LastNodeIDOnFreeBorder,
217                     CORBA::Long FirstNodeIDOnSide,
218                     CORBA::Long LastNodeIDOnSide,
219                     CORBA::Boolean CreatePolygons,
220                     CORBA::Boolean CreatePolyedrs);
221   SMESH::SMESH_MeshEditor::Sew_Error
222     SewSideElements(const SMESH::long_array& IDsOfSide1Elements,
223                     const SMESH::long_array& IDsOfSide2Elements,
224                     CORBA::Long NodeID1OfSide1ToMerge,
225                     CORBA::Long NodeID1OfSide2ToMerge,
226                     CORBA::Long NodeID2OfSide1ToMerge,
227                     CORBA::Long NodeID2OfSide2ToMerge);
228
229  private:
230   SMESHDS_Mesh * GetMeshDS() { return _myMesh->GetMeshDS(); }
231   SMESH_Mesh   *_myMesh;
232 };
233
234 #endif