Salome HOME
Dump Python extension
[modules/smesh.git] / src / SMESH_I / SMESH_MeshEditor_i.cxx
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : SMESH_MeshEditor_i.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #include "SMESH_MeshEditor_i.hxx"
30
31 #include "SMDS_MeshEdge.hxx"
32 #include "SMDS_MeshFace.hxx"
33 #include "SMDS_MeshVolume.hxx"
34 #include "SMDS_PolyhedralVolumeOfNodes.hxx"
35 #include "SMESH_MeshEditor.hxx"
36 #include "SMESH_subMeshEventListener.hxx"
37 #include "SMESH_Gen_i.hxx"
38 #include "SMESH_Filter_i.hxx"
39 #include "SMESH_PythonDump.hxx"
40
41 #include "utilities.h"
42 #include "Utils_ExceptHandlers.hxx"
43 #include "Utils_CorbaException.hxx"
44
45 #include <BRepAdaptor_Surface.hxx>
46 #include <BRep_Tool.hxx>
47 #include <TopExp_Explorer.hxx>
48 #include <TopoDS.hxx>
49 #include <TopoDS_Edge.hxx>
50 #include <TopoDS_Face.hxx>
51 #include <gp_Ax1.hxx>
52 #include <gp_Ax2.hxx>
53 #include <gp_Vec.hxx>
54
55 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
56 #define NO_CAS_CATCH
57 #endif
58
59 #include <Standard_Failure.hxx>
60
61 #ifdef NO_CAS_CATCH
62 #include <Standard_ErrorHandler.hxx>
63 #endif
64
65 #include <sstream>
66
67 #define cast2Node(elem) static_cast<const SMDS_MeshNode*>( elem )
68
69 using namespace std;
70 using SMESH::TPythonDump;
71
72 namespace {
73
74   //=============================================================================
75   /*!
76    * \brief Mesh to apply modifications for preview purposes
77    */
78   //=============================================================================
79
80   struct TPreviewMesh: public SMESH_Mesh
81   {
82     SMDSAbs_ElementType myPreviewType; // type to show
83     //!< Constructor
84     TPreviewMesh(SMDSAbs_ElementType previewElements = SMDSAbs_All) {
85       _isShapeToMesh = _id =_studyId =_idDoc = 0;
86       _myMeshDS  = new SMESHDS_Mesh( _id, true );
87       myPreviewType = previewElements;
88     }
89     //!< Destructor
90     virtual ~TPreviewMesh() { delete _myMeshDS; }
91     //!< Copy a set of elements
92     void Copy(const TIDSortedElemSet & theElements,
93               TIDSortedElemSet&        theCopyElements,
94               SMDSAbs_ElementType      theSelectType = SMDSAbs_All,
95               SMDSAbs_ElementType      theAvoidType = SMDSAbs_All)
96     {
97       // loop on theIDsOfElements
98       TIDSortedElemSet::const_iterator eIt = theElements.begin();
99       for ( ; eIt != theElements.end(); ++eIt )
100       {
101         const SMDS_MeshElement* anElem = *eIt;
102         if ( !anElem ) continue;
103         SMDSAbs_ElementType type = anElem->GetType();
104         if ( type == theAvoidType ||
105              ( theSelectType != SMDSAbs_All && type != theSelectType ))
106           continue;
107
108         if ( const SMDS_MeshElement* anElemCopy = Copy( anElem ))
109           theCopyElements.insert( theCopyElements.end(), anElemCopy );
110       }
111     }
112     //!< Copy an element
113     SMDS_MeshElement* Copy( const SMDS_MeshElement* anElem )
114     {
115       // copy element nodes
116       int anElemNbNodes = anElem->NbNodes();
117       vector< int > anElemNodesID( anElemNbNodes ) ;
118       SMDS_ElemIteratorPtr itElemNodes = anElem->nodesIterator();
119       for ( int i = 0; itElemNodes->more(); i++)
120       {
121         const SMDS_MeshNode* anElemNode = cast2Node( itElemNodes->next() );
122         Copy( anElemNode );
123         anElemNodesID[i] = anElemNode->GetID();
124       }
125
126       // creates a corresponding element on copied nodes
127       SMDS_MeshElement* anElemCopy = 0;
128       if ( anElem->IsPoly() && anElem->GetType() == SMDSAbs_Volume )
129       {
130         const SMDS_PolyhedralVolumeOfNodes* ph =
131           dynamic_cast<const SMDS_PolyhedralVolumeOfNodes*> (anElem);
132         if ( ph )
133           anElemCopy = _myMeshDS->AddPolyhedralVolumeWithID
134             (anElemNodesID, ph->GetQuanities(),anElem->GetID());
135       }
136       else {
137         anElemCopy = ::SMESH_MeshEditor(this).AddElement( anElemNodesID,
138                                                           anElem->GetType(),
139                                                           anElem->IsPoly() );
140       }
141       return anElemCopy;
142     }
143     //!< Copy a node
144     SMDS_MeshNode* Copy( const SMDS_MeshNode* anElemNode )
145     {
146       return _myMeshDS->AddNodeWithID(anElemNode->X(), anElemNode->Y(), anElemNode->Z(), 
147                                       anElemNode->GetID());
148     }
149   };// struct TPreviewMesh
150
151   static SMESH_NodeSearcher * myNodeSearcher = 0;
152
153   //=============================================================================
154   /*!
155    * \brief Deleter of myNodeSearcher at any compute event occured
156    */
157   //=============================================================================
158
159   struct TNodeSearcherDeleter : public SMESH_subMeshEventListener
160   {
161     SMESH_Mesh* myMesh;
162     //!< Constructor
163     TNodeSearcherDeleter(): SMESH_subMeshEventListener( false ), // won't be deleted by submesh
164     myMesh(0) {}
165     //!< Delete myNodeSearcher
166     static void Delete()
167     {
168       if ( myNodeSearcher ) { delete myNodeSearcher; myNodeSearcher = 0; }
169     }
170     typedef map < int, SMESH_subMesh * > TDependsOnMap;
171     //!< The meshod called by submesh: do my main job
172     void ProcessEvent(const int, const int eventType, SMESH_subMesh* sm,
173                       SMESH_subMeshEventListenerData*,const SMESH_Hypothesis*)
174     {
175       if ( eventType == SMESH_subMesh::COMPUTE_EVENT ) {
176         Delete();
177         Unset( sm->GetFather() );
178       }
179     }
180     //!< set self on all submeshes and delete myNodeSearcher if other mesh is set
181     void Set(SMESH_Mesh* mesh)
182     {
183       if ( myMesh && myMesh != mesh ) {
184         Delete();
185         Unset( myMesh );
186       }
187       myMesh = mesh;
188       if ( SMESH_subMesh* myMainSubMesh = mesh->GetSubMeshContaining(1) ) {
189         const TDependsOnMap & subMeshes = myMainSubMesh->DependsOn();
190         TDependsOnMap::const_iterator sm;
191         for (sm = subMeshes.begin(); sm != subMeshes.end(); sm++)
192           sm->second->SetEventListener( this, 0, sm->second );
193       }
194     }
195     //!<  delete self from all submeshes
196     void Unset(SMESH_Mesh* mesh)
197     {
198       if ( SMESH_subMesh* myMainSubMesh = mesh->GetSubMeshContaining(1) ) {
199         const TDependsOnMap & subMeshes = myMainSubMesh->DependsOn();
200         TDependsOnMap::const_iterator sm;
201         for (sm = subMeshes.begin(); sm != subMeshes.end(); sm++)
202           sm->second->DeleteEventListener( this );
203       }
204     }
205   };
206
207   TCollection_AsciiString mirrorTypeName( SMESH::SMESH_MeshEditor::MirrorType theMirrorType )
208   {
209     TCollection_AsciiString typeStr;
210     switch ( theMirrorType ) {
211     case  SMESH::SMESH_MeshEditor::POINT:
212       typeStr = "SMESH.SMESH_MeshEditor.POINT";
213       break;
214     case  SMESH::SMESH_MeshEditor::AXIS:
215       typeStr = "SMESH.SMESH_MeshEditor.AXIS";
216       break;
217     default:
218       typeStr = "SMESH.SMESH_MeshEditor.PLANE";
219     }
220     return typeStr;
221   }
222 }
223
224 //=============================================================================
225 /*!
226  *
227  */
228 //=============================================================================
229
230 SMESH_MeshEditor_i::SMESH_MeshEditor_i(SMESH_Mesh_i* theMesh, bool isPreview)
231 {
232   myMesh_i = theMesh;
233   myMesh = & theMesh->GetImpl();
234   myPreviewMode = isPreview;
235 }
236
237 //================================================================================
238 /*!
239  * \brief Destructor
240  */
241 //================================================================================
242
243 SMESH_MeshEditor_i::~SMESH_MeshEditor_i()
244 {
245 }
246
247 //================================================================================
248 /*!
249  * \brief Clear members
250  */
251 //================================================================================
252
253 void SMESH_MeshEditor_i::initData()
254 {
255   if ( myPreviewMode ) {
256     myPreviewData = new SMESH::MeshPreviewStruct();
257   }
258   else {
259     myLastCreatedElems = new SMESH::long_array();
260     myLastCreatedNodes = new SMESH::long_array();
261     TNodeSearcherDeleter::Delete();
262   }
263 }
264
265 //=============================================================================
266 /*!
267  *
268  */
269 //=============================================================================
270
271 CORBA::Boolean
272   SMESH_MeshEditor_i::RemoveElements(const SMESH::long_array & IDsOfElements)
273 {
274   initData();
275
276   ::SMESH_MeshEditor anEditor( myMesh );
277   list< int > IdList;
278
279   for (int i = 0; i < IDsOfElements.length(); i++)
280     IdList.push_back( IDsOfElements[i] );
281
282   // Update Python script
283   TPythonDump() << "isDone = " << this << ".RemoveElements( " << IDsOfElements << " )";
284 #ifdef _DEBUG_
285   TPythonDump() << "print 'RemoveElements: ', isDone";
286 #endif
287   // Remove Elements
288   return anEditor.Remove( IdList, false );
289 }
290
291 //=============================================================================
292 /*!
293  *
294  */
295 //=============================================================================
296
297 CORBA::Boolean SMESH_MeshEditor_i::RemoveNodes(const SMESH::long_array & IDsOfNodes)
298 {
299   initData();
300
301   ::SMESH_MeshEditor anEditor( myMesh );
302   list< int > IdList;
303   for (int i = 0; i < IDsOfNodes.length(); i++)
304     IdList.push_back( IDsOfNodes[i] );
305
306   // Update Python script
307   TPythonDump() << "isDone = " << this << ".RemoveNodes( " << IDsOfNodes << " )";
308 #ifdef _DEBUG_
309   TPythonDump() << "print 'RemoveNodes: ', isDone";
310 #endif
311
312   return anEditor.Remove( IdList, true );
313 }
314
315 //=============================================================================
316 /*!
317  *
318  */
319 //=============================================================================
320
321 CORBA::Long SMESH_MeshEditor_i::AddEdge(const SMESH::long_array & IDsOfNodes)
322 {
323   initData();
324
325   int NbNodes = IDsOfNodes.length();
326   SMDS_MeshElement* elem = 0;
327   if (NbNodes == 2)
328   {
329     CORBA::Long index1 = IDsOfNodes[0];
330     CORBA::Long index2 = IDsOfNodes[1];
331     elem = GetMeshDS()->AddEdge(GetMeshDS()->FindNode(index1), GetMeshDS()->FindNode(index2));
332
333     // Update Python script
334     TPythonDump() << "edge = " << this << ".AddEdge([ "
335                   << index1 << ", " << index2 <<" ])";
336   }
337   if (NbNodes == 3) {
338     CORBA::Long n1 = IDsOfNodes[0];
339     CORBA::Long n2 = IDsOfNodes[1];
340     CORBA::Long n12 = IDsOfNodes[2];
341     elem = GetMeshDS()->AddEdge(GetMeshDS()->FindNode(n1),
342                                 GetMeshDS()->FindNode(n2),
343                                 GetMeshDS()->FindNode(n12));
344     // Update Python script
345     TPythonDump() << "edgeID = " << this << ".AddEdge([ "
346                   <<n1<<", "<<n2<<", "<<n12<<" ])";
347   }
348
349   if(elem)
350     return elem->GetID();
351
352   return 0;
353 }
354
355 //=============================================================================
356 /*!
357  *
358  */
359 //=============================================================================
360
361 CORBA::Long SMESH_MeshEditor_i::AddNode(CORBA::Double x,
362                                         CORBA::Double y, CORBA::Double z)
363 {
364   initData();
365
366   const SMDS_MeshNode* N = GetMeshDS()->AddNode(x, y, z);
367
368   // Update Python script
369   TPythonDump() << "nodeID = " << this << ".AddNode( "
370                 << x << ", " << y << ", " << z << " )";
371
372   return N->GetID();
373 }
374
375 //=============================================================================
376 /*!
377  *  AddFace
378  */
379 //=============================================================================
380
381 CORBA::Long SMESH_MeshEditor_i::AddFace(const SMESH::long_array & IDsOfNodes)
382 {
383   initData();
384
385   int NbNodes = IDsOfNodes.length();
386   if (NbNodes < 3)
387   {
388     return 0;
389   }
390
391   std::vector<const SMDS_MeshNode*> nodes (NbNodes);
392   for (int i = 0; i < NbNodes; i++)
393     nodes[i] = GetMeshDS()->FindNode(IDsOfNodes[i]);
394
395   SMDS_MeshElement* elem = 0;
396   if (NbNodes == 3) {
397     elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2]);
398   }
399   else if (NbNodes == 4) {
400     elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3]);
401   }
402   else if (NbNodes == 6) {
403     elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
404                                 nodes[4], nodes[5]);
405   }
406   else if (NbNodes == 8) {
407     elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
408                                 nodes[4], nodes[5], nodes[6], nodes[7]);
409   }
410
411   // Update Python script
412   TPythonDump() << "faceID = " << this << ".AddFace( " << IDsOfNodes << " )";
413
414   if(elem)
415     return elem->GetID();
416
417   return 0;
418 }
419
420 //=============================================================================
421 /*!
422  *  AddPolygonalFace
423  */
424 //=============================================================================
425 CORBA::Long SMESH_MeshEditor_i::AddPolygonalFace
426                                    (const SMESH::long_array & IDsOfNodes)
427 {
428   initData();
429
430   int NbNodes = IDsOfNodes.length();
431   std::vector<const SMDS_MeshNode*> nodes (NbNodes);
432   for (int i = 0; i < NbNodes; i++)
433     nodes[i] = GetMeshDS()->FindNode(IDsOfNodes[i]);
434
435   const SMDS_MeshElement* elem = GetMeshDS()->AddPolygonalFace(nodes);
436   
437   // Update Python script
438   TPythonDump() <<"faceID = "<<this<<".AddPolygonalFace( "<<IDsOfNodes<<" )";
439 #ifdef _DEBUG_
440   TPythonDump() << "print 'AddPolygonalFace: ', faceID";
441 #endif
442
443   if(elem)
444     return elem->GetID();
445
446   return 0;
447 }
448
449 //=============================================================================
450 /*!
451  *
452  */
453 //=============================================================================
454
455 CORBA::Long SMESH_MeshEditor_i::AddVolume(const SMESH::long_array & IDsOfNodes)
456 {
457   initData();
458
459   int NbNodes = IDsOfNodes.length();
460   vector< const SMDS_MeshNode*> n(NbNodes);
461   for(int i=0;i<NbNodes;i++)
462     n[i]=GetMeshDS()->FindNode(IDsOfNodes[i]);
463
464   SMDS_MeshElement* elem = 0;
465   switch(NbNodes)
466   {
467   case 4 :elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3]); break;
468   case 5 :elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4]); break;
469   case 6 :elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5]); break;
470   case 8 :elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7]); break;
471   case 10:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],
472                                         n[6],n[7],n[8],n[9]);
473     break;
474   case 13:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],
475                                         n[7],n[8],n[9],n[10],n[11],n[12]);
476     break;
477   case 15:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],n[8],
478                                         n[9],n[10],n[11],n[12],n[13],n[14]);
479     break;
480   case 20:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],
481                                         n[8],n[9],n[10],n[11],n[12],n[13],n[14],
482                                         n[15],n[16],n[17],n[18],n[19]);
483     break;
484   }
485
486   // Update Python script
487   TPythonDump() << "volID = " << this << ".AddVolume( " << IDsOfNodes << " )";
488 #ifdef _DEBUG_
489   TPythonDump() << "print 'AddVolume: ', volID";
490 #endif
491
492   if(elem)
493     return elem->GetID();
494
495   return 0;
496 }
497
498 //=============================================================================
499 /*!
500  *  AddPolyhedralVolume
501  */
502 //=============================================================================
503 CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolume
504                                    (const SMESH::long_array & IDsOfNodes,
505                                     const SMESH::long_array & Quantities)
506 {
507   initData();
508
509   int NbNodes = IDsOfNodes.length();
510   std::vector<const SMDS_MeshNode*> n (NbNodes);
511   for (int i = 0; i < NbNodes; i++)
512     n[i] = GetMeshDS()->FindNode(IDsOfNodes[i]);
513
514   int NbFaces = Quantities.length();
515   std::vector<int> q (NbFaces);
516   for (int j = 0; j < NbFaces; j++)
517     q[j] = Quantities[j];
518
519   const SMDS_MeshElement* elem = GetMeshDS()->AddPolyhedralVolume(n, q);
520
521   // Update Python script
522   TPythonDump() << "volID = " << this << ".AddPolyhedralVolume( "
523                 << IDsOfNodes << ", " << Quantities << " )";
524 #ifdef _DEBUG_
525   TPythonDump() << "print 'AddPolyhedralVolume: ', volID";
526 #endif
527
528   if(elem)
529     return elem->GetID();
530
531   return 0;
532 }
533
534 //=============================================================================
535 /*!
536  *  AddPolyhedralVolumeByFaces
537  */
538 //=============================================================================
539 CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolumeByFaces
540                                    (const SMESH::long_array & IdsOfFaces)
541 {
542   initData();
543
544   int NbFaces = IdsOfFaces.length();
545   std::vector<const SMDS_MeshNode*> poly_nodes;
546   std::vector<int> quantities (NbFaces);
547
548   for (int i = 0; i < NbFaces; i++) {
549     const SMDS_MeshElement* aFace = GetMeshDS()->FindElement(IdsOfFaces[i]);
550     quantities[i] = aFace->NbNodes();
551
552     SMDS_ElemIteratorPtr It = aFace->nodesIterator();
553     while (It->more()) {
554       poly_nodes.push_back(static_cast<const SMDS_MeshNode *>(It->next()));
555     }
556   }
557
558   const SMDS_MeshElement* elem = GetMeshDS()->AddPolyhedralVolume(poly_nodes, quantities);
559
560   // Update Python script
561   TPythonDump() << "volID = " << this << ".AddPolyhedralVolumeByFaces( "
562                 << IdsOfFaces << " )";
563 #ifdef _DEBUG_
564   TPythonDump() << "print 'AddPolyhedralVolume: ', volID";
565 #endif
566
567   if(elem)
568     return elem->GetID();
569
570   return 0;
571 }
572
573 //=============================================================================
574 /*!
575  * \brief Bind a node to a vertex
576  * \param NodeID - node ID
577  * \param VertexID - vertex ID available through GEOM_Object.GetSubShapeIndices()[0]
578  * \retval boolean - false if NodeID or VertexID is invalid
579  */
580 //=============================================================================
581
582 void SMESH_MeshEditor_i::SetNodeOnVertex(CORBA::Long NodeID, CORBA::Long VertexID)
583   throw (SALOME::SALOME_Exception)
584 {
585   Unexpect aCatch(SALOME_SalomeException);
586
587   SMESHDS_Mesh * mesh = GetMeshDS();
588   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
589   if ( !node )
590     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
591
592   if ( mesh->MaxShapeIndex() < VertexID )
593     THROW_SALOME_CORBA_EXCEPTION("Invalid VertexID", SALOME::BAD_PARAM);
594
595   TopoDS_Shape shape = mesh->IndexToShape( VertexID );
596   if ( shape.ShapeType() != TopAbs_VERTEX )
597     THROW_SALOME_CORBA_EXCEPTION("Invalid VertexID", SALOME::BAD_PARAM);
598
599   mesh->SetNodeOnVertex( node, VertexID );
600 }
601
602 //=============================================================================
603 /*!
604  * \brief Store node position on an edge
605  * \param NodeID - node ID
606  * \param EdgeID - edge ID available through GEOM_Object.GetSubShapeIndices()[0]
607  * \param paramOnEdge - parameter on edge where the node is located
608  * \retval boolean - false if any parameter is invalid
609  */
610 //=============================================================================
611
612 void SMESH_MeshEditor_i::SetNodeOnEdge(CORBA::Long NodeID, CORBA::Long EdgeID,
613                                        CORBA::Double paramOnEdge)
614   throw (SALOME::SALOME_Exception)
615 {
616   Unexpect aCatch(SALOME_SalomeException);
617
618   SMESHDS_Mesh * mesh = GetMeshDS();
619   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
620   if ( !node )
621     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
622
623   if ( mesh->MaxShapeIndex() < EdgeID )
624     THROW_SALOME_CORBA_EXCEPTION("Invalid EdgeID", SALOME::BAD_PARAM);
625
626   TopoDS_Shape shape = mesh->IndexToShape( EdgeID );
627   if ( shape.ShapeType() != TopAbs_EDGE )
628     THROW_SALOME_CORBA_EXCEPTION("Invalid EdgeID", SALOME::BAD_PARAM);
629
630   Standard_Real f,l;
631   BRep_Tool::Range( TopoDS::Edge( shape ), f,l);
632   if ( paramOnEdge < f || paramOnEdge > l )
633     THROW_SALOME_CORBA_EXCEPTION("Invalid paramOnEdge", SALOME::BAD_PARAM);
634
635   mesh->SetNodeOnEdge( node, EdgeID, paramOnEdge );
636 }
637
638 //=============================================================================
639 /*!
640  * \brief Store node position on a face
641  * \param NodeID - node ID
642  * \param FaceID - face ID available through GEOM_Object.GetSubShapeIndices()[0]
643  * \param u - U parameter on face where the node is located
644  * \param v - V parameter on face where the node is located
645  * \retval boolean - false if any parameter is invalid
646  */
647 //=============================================================================
648
649 void SMESH_MeshEditor_i::SetNodeOnFace(CORBA::Long NodeID, CORBA::Long FaceID,
650                                        CORBA::Double u, CORBA::Double v)
651   throw (SALOME::SALOME_Exception)
652 {
653   Unexpect aCatch(SALOME_SalomeException);
654
655   SMESHDS_Mesh * mesh = GetMeshDS();
656   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
657   if ( !node )
658     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
659
660   if ( mesh->MaxShapeIndex() < FaceID )
661     THROW_SALOME_CORBA_EXCEPTION("Invalid FaceID", SALOME::BAD_PARAM);
662
663   TopoDS_Shape shape = mesh->IndexToShape( FaceID );
664   if ( shape.ShapeType() != TopAbs_FACE )
665     THROW_SALOME_CORBA_EXCEPTION("Invalid FaceID", SALOME::BAD_PARAM);
666
667   BRepAdaptor_Surface surf( TopoDS::Face( shape ));
668   bool isOut = ( u < surf.FirstUParameter() ||
669                  u > surf.LastUParameter()  ||
670                  v < surf.FirstVParameter() ||
671                  v > surf.LastVParameter() );
672
673   if ( isOut ) {
674 #ifdef _DEBUG_
675     MESSAGE ( "FACE " << FaceID << " (" << u << "," << v << ") out of "
676            << " u( " <<  surf.FirstUParameter() 
677            << "," <<  surf.LastUParameter()  
678            << ") v( " <<  surf.FirstVParameter() 
679            << "," <<  surf.LastVParameter() << ")" );
680 #endif    
681     THROW_SALOME_CORBA_EXCEPTION("Invalid UV", SALOME::BAD_PARAM);
682   }
683
684   mesh->SetNodeOnFace( node, FaceID, u, v );
685 }
686
687 //=============================================================================
688 /*!
689  * \brief Bind a node to a solid
690  * \param NodeID - node ID
691  * \param SolidID - vertex ID available through GEOM_Object.GetSubShapeIndices()[0]
692  * \retval boolean - false if NodeID or SolidID is invalid
693  */
694 //=============================================================================
695
696 void SMESH_MeshEditor_i::SetNodeInVolume(CORBA::Long NodeID, CORBA::Long SolidID)
697   throw (SALOME::SALOME_Exception)
698 {
699   Unexpect aCatch(SALOME_SalomeException);
700
701   SMESHDS_Mesh * mesh = GetMeshDS();
702   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
703   if ( !node )
704     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
705
706   if ( mesh->MaxShapeIndex() < SolidID )
707     THROW_SALOME_CORBA_EXCEPTION("Invalid SolidID", SALOME::BAD_PARAM);
708
709   TopoDS_Shape shape = mesh->IndexToShape( SolidID );
710   if ( shape.ShapeType() != TopAbs_SOLID &&
711        shape.ShapeType() != TopAbs_SHELL)
712     THROW_SALOME_CORBA_EXCEPTION("Invalid SolidID", SALOME::BAD_PARAM);
713
714   mesh->SetNodeInVolume( node, SolidID );
715 }
716
717 //=============================================================================
718 /*!
719  * \brief Bind an element to a shape
720  * \param ElementID - element ID
721  * \param ShapeID - shape ID available through GEOM_Object.GetSubShapeIndices()[0]
722  * \retval boolean - false if ElementID or ShapeID is invalid
723  */
724 //=============================================================================
725
726 void SMESH_MeshEditor_i::SetMeshElementOnShape(CORBA::Long ElementID,
727                                                CORBA::Long ShapeID)
728   throw (SALOME::SALOME_Exception)
729 {
730   Unexpect aCatch(SALOME_SalomeException);
731
732   SMESHDS_Mesh * mesh = GetMeshDS();
733   SMDS_MeshElement* elem = const_cast<SMDS_MeshElement*>(mesh->FindElement(ElementID));
734   if ( !elem )
735     THROW_SALOME_CORBA_EXCEPTION("Invalid ElementID", SALOME::BAD_PARAM);
736
737   if ( mesh->MaxShapeIndex() < ShapeID )
738     THROW_SALOME_CORBA_EXCEPTION("Invalid ShapeID", SALOME::BAD_PARAM);
739
740   TopoDS_Shape shape = mesh->IndexToShape( ShapeID );
741   if ( shape.ShapeType() != TopAbs_EDGE &&
742        shape.ShapeType() != TopAbs_FACE &&
743        shape.ShapeType() != TopAbs_SOLID &&
744        shape.ShapeType() != TopAbs_SHELL )
745     THROW_SALOME_CORBA_EXCEPTION("Invalid shape type", SALOME::BAD_PARAM);
746
747   mesh->SetMeshElementOnShape( elem, ShapeID );
748 }
749
750
751 //=============================================================================
752 /*!
753  *
754  */
755 //=============================================================================
756
757 CORBA::Boolean SMESH_MeshEditor_i::MoveNode(CORBA::Long   NodeID,
758                                             CORBA::Double x,
759                                             CORBA::Double y,
760                                             CORBA::Double z)
761 {
762   initData();
763
764   const SMDS_MeshNode * node = GetMeshDS()->FindNode( NodeID );
765   if ( !node )
766     return false;
767
768   GetMeshDS()->MoveNode(node, x, y, z);
769
770   // Update Python script
771   TPythonDump() << "isDone = " << this << ".MoveNode( "
772                 << NodeID << ", " << x << ", " << y << ", " << z << " )";
773
774   return true;
775 }
776
777 //=============================================================================
778 /*!
779  *
780  */
781 //=============================================================================
782
783 CORBA::Boolean SMESH_MeshEditor_i::InverseDiag(CORBA::Long NodeID1,
784                                                CORBA::Long NodeID2)
785 {
786   initData();
787
788   const SMDS_MeshNode * n1 = GetMeshDS()->FindNode( NodeID1 );
789   const SMDS_MeshNode * n2 = GetMeshDS()->FindNode( NodeID2 );
790   if ( !n1 || !n2 )
791     return false;
792
793   // Update Python script
794   TPythonDump() << "isDone = " << this << ".InverseDiag( "
795                 << NodeID1 << ", " << NodeID2 << " )";
796
797   ::SMESH_MeshEditor aMeshEditor( myMesh );
798   return aMeshEditor.InverseDiag ( n1, n2 );
799 }
800
801 //=============================================================================
802 /*!
803  *
804  */
805 //=============================================================================
806
807 CORBA::Boolean SMESH_MeshEditor_i::DeleteDiag(CORBA::Long NodeID1,
808                                               CORBA::Long NodeID2)
809 {
810   initData();
811
812   const SMDS_MeshNode * n1 = GetMeshDS()->FindNode( NodeID1 );
813   const SMDS_MeshNode * n2 = GetMeshDS()->FindNode( NodeID2 );
814   if ( !n1 || !n2 )
815     return false;
816
817   // Update Python script
818   TPythonDump() << "isDone = " << this << ".DeleteDiag( "
819                 << NodeID1 << ", " << NodeID2 <<  " )";
820
821   ::SMESH_MeshEditor aMeshEditor( myMesh );
822
823   bool stat = aMeshEditor.DeleteDiag ( n1, n2 );
824
825   storeResult(aMeshEditor);
826
827   return stat;
828 }
829
830 //=============================================================================
831 /*!
832  *
833  */
834 //=============================================================================
835
836 CORBA::Boolean SMESH_MeshEditor_i::Reorient(const SMESH::long_array & IDsOfElements)
837 {
838   initData();
839
840   ::SMESH_MeshEditor anEditor( myMesh );
841   for (int i = 0; i < IDsOfElements.length(); i++)
842   {
843     CORBA::Long index = IDsOfElements[i];
844     const SMDS_MeshElement * elem = GetMeshDS()->FindElement(index);
845     if ( elem )
846       anEditor.Reorient( elem );
847   }
848   // Update Python script
849   TPythonDump() << "isDone = " << this << ".Reorient( " << IDsOfElements << " )";
850
851   return true;
852 }
853
854
855 //=============================================================================
856 /*!
857  *
858  */
859 //=============================================================================
860
861 CORBA::Boolean SMESH_MeshEditor_i::ReorientObject(SMESH::SMESH_IDSource_ptr theObject)
862 {
863   initData();
864
865   SMESH::long_array_var anElementsId = theObject->GetIDs();
866   CORBA::Boolean isDone = Reorient(anElementsId);
867
868   // Clear python line, created by Reorient()
869   SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
870   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
871
872   // Update Python script
873   TPythonDump() << "isDone = " << this << ".ReorientObject( " << theObject << " )";
874
875   return isDone;
876 }
877
878 namespace
879 {
880   //================================================================================
881   /*!
882    * \brief function for conversion long_array to TIDSortedElemSet
883     * \param IDs - array of IDs
884     * \param aMesh - mesh
885     * \param aMap - collection to fill
886     * \param aType - element type
887    */
888   //================================================================================
889
890   void arrayToSet(const SMESH::long_array & IDs,
891                   const SMESHDS_Mesh*       aMesh,
892                   TIDSortedElemSet&         aMap,
893                   const SMDSAbs_ElementType aType = SMDSAbs_All )
894   { 
895     for (int i=0; i<IDs.length(); i++) {
896       CORBA::Long ind = IDs[i];
897       const SMDS_MeshElement * elem = aMesh->FindElement(ind);
898       if ( elem && ( aType == SMDSAbs_All || elem->GetType() == aType ))
899         aMap.insert( elem );
900     }
901   }
902 }
903
904 //=============================================================================
905 /*!
906  *
907  */
908 //=============================================================================
909 CORBA::Boolean SMESH_MeshEditor_i::TriToQuad (const SMESH::long_array &   IDsOfElements,
910                                               SMESH::NumericalFunctor_ptr Criterion,
911                                               CORBA::Double               MaxAngle)
912 {
913   initData();
914
915   SMESHDS_Mesh* aMesh = GetMeshDS();
916   TIDSortedElemSet faces;
917   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face);
918
919   SMESH::NumericalFunctor_i* aNumericalFunctor =
920     dynamic_cast<SMESH::NumericalFunctor_i*>( SMESH_Gen_i::GetServant( Criterion ).in() );
921   SMESH::Controls::NumericalFunctorPtr aCrit;
922   if ( !aNumericalFunctor )
923     aCrit.reset( new SMESH::Controls::AspectRatio() );
924   else
925     aCrit = aNumericalFunctor->GetNumericalFunctor();
926
927   // Update Python script
928   TPythonDump() << "isDone = " << this << ".TriToQuad( "
929                 << IDsOfElements << ", " << aNumericalFunctor << ", " << MaxAngle << " )";
930 #ifdef _DEBUG_
931   TPythonDump() << "print 'TriToQuad: ', isDone";
932 #endif
933
934   ::SMESH_MeshEditor anEditor( myMesh );
935
936   bool stat = anEditor.TriToQuad( faces, aCrit, MaxAngle );
937
938   storeResult(anEditor);
939
940   return stat;
941 }
942
943
944 //=============================================================================
945 /*!
946  *
947  */
948 //=============================================================================
949 CORBA::Boolean SMESH_MeshEditor_i::TriToQuadObject (SMESH::SMESH_IDSource_ptr   theObject,
950                                                     SMESH::NumericalFunctor_ptr Criterion,
951                                                     CORBA::Double               MaxAngle)
952 {
953   initData();
954
955   SMESH::long_array_var anElementsId = theObject->GetIDs();
956   CORBA::Boolean isDone = TriToQuad(anElementsId, Criterion, MaxAngle);
957
958   // Clear python line(s), created by TriToQuad()
959   SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
960   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
961 #ifdef _DEBUG_
962   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
963 #endif
964
965   SMESH::NumericalFunctor_i* aNumericalFunctor =
966     SMESH::DownCast<SMESH::NumericalFunctor_i*>( Criterion );
967
968   // Update Python script
969   TPythonDump() << "isDone = " << this << ".TriToQuadObject("
970                 << theObject << ", " << aNumericalFunctor << ", " << MaxAngle << " )";
971 #ifdef _DEBUG_
972   TPythonDump() << "print 'TriToQuadObject: ', isDone";
973 #endif
974
975   return isDone;
976 }
977
978
979 //=============================================================================
980 /*!
981  *
982  */
983 //=============================================================================
984 CORBA::Boolean SMESH_MeshEditor_i::QuadToTri (const SMESH::long_array &   IDsOfElements,
985                                               SMESH::NumericalFunctor_ptr Criterion)
986 {
987   initData();
988
989   SMESHDS_Mesh* aMesh = GetMeshDS();
990   TIDSortedElemSet faces;
991   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face);
992
993   SMESH::NumericalFunctor_i* aNumericalFunctor =
994     dynamic_cast<SMESH::NumericalFunctor_i*>( SMESH_Gen_i::GetServant( Criterion ).in() );
995   SMESH::Controls::NumericalFunctorPtr aCrit;
996   if ( !aNumericalFunctor )
997     aCrit.reset( new SMESH::Controls::AspectRatio() );
998   else
999     aCrit = aNumericalFunctor->GetNumericalFunctor();
1000
1001
1002   // Update Python script
1003   TPythonDump() << "isDone = " << this << ".QuadToTri( " << IDsOfElements << ", " << aNumericalFunctor << " )";
1004 #ifdef _DEBUG_
1005   TPythonDump() << "print 'QuadToTri: ', isDone";
1006 #endif
1007
1008   ::SMESH_MeshEditor anEditor( myMesh );
1009   CORBA::Boolean stat = anEditor.QuadToTri( faces, aCrit );
1010
1011   storeResult(anEditor);
1012
1013   return stat;
1014 }
1015
1016
1017 //=============================================================================
1018 /*!
1019  *
1020  */
1021 //=============================================================================
1022 CORBA::Boolean SMESH_MeshEditor_i::QuadToTriObject (SMESH::SMESH_IDSource_ptr   theObject,
1023                                                     SMESH::NumericalFunctor_ptr Criterion)
1024 {
1025   initData();
1026
1027   SMESH::long_array_var anElementsId = theObject->GetIDs();
1028   CORBA::Boolean isDone = QuadToTri(anElementsId, Criterion);
1029
1030   // Clear python line(s), created by QuadToTri()
1031   SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
1032   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
1033 #ifdef _DEBUG_
1034   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
1035 #endif
1036
1037   SMESH::NumericalFunctor_i* aNumericalFunctor =
1038     SMESH::DownCast<SMESH::NumericalFunctor_i*>( Criterion );
1039
1040   // Update Python script
1041   TPythonDump() << "isDone = " << this << ".QuadToTriObject( " << theObject << ", " << aNumericalFunctor << " )";
1042 #ifdef _DEBUG_
1043   TPythonDump() << "print 'QuadToTriObject: ', isDone";
1044 #endif
1045
1046   return isDone;
1047 }
1048
1049
1050 //=============================================================================
1051 /*!
1052  *
1053  */
1054 //=============================================================================
1055 CORBA::Boolean SMESH_MeshEditor_i::SplitQuad (const SMESH::long_array & IDsOfElements,
1056                                               CORBA::Boolean            Diag13)
1057 {
1058   initData();
1059
1060   SMESHDS_Mesh* aMesh = GetMeshDS();
1061   TIDSortedElemSet faces;
1062   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face);
1063
1064   // Update Python script
1065   TPythonDump() << "isDone = " << this << ".SplitQuad( "
1066                 << IDsOfElements << ", " << Diag13 << " )";
1067 #ifdef _DEBUG_
1068   TPythonDump() << "print 'SplitQuad: ', isDone";
1069 #endif
1070
1071   ::SMESH_MeshEditor anEditor( myMesh );
1072   CORBA::Boolean stat = anEditor.QuadToTri( faces, Diag13 );
1073
1074   storeResult(anEditor);
1075
1076   return stat;
1077 }
1078
1079
1080 //=============================================================================
1081 /*!
1082  *
1083  */
1084 //=============================================================================
1085 CORBA::Boolean SMESH_MeshEditor_i::SplitQuadObject (SMESH::SMESH_IDSource_ptr theObject,
1086                                                     CORBA::Boolean            Diag13)
1087 {
1088   initData();
1089
1090   SMESH::long_array_var anElementsId = theObject->GetIDs();
1091   CORBA::Boolean isDone = SplitQuad(anElementsId, Diag13);
1092
1093   // Clear python line(s), created by SplitQuad()
1094   SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
1095   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
1096 #ifdef _DEBUG_
1097   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
1098 #endif
1099
1100   // Update Python script
1101   TPythonDump() << "isDone = " << this << ".SplitQuadObject( "
1102                 << theObject << ", " << Diag13 << " )";
1103 #ifdef _DEBUG_
1104   TPythonDump() << "print 'SplitQuadObject: ', isDone";
1105 #endif
1106
1107   return isDone;
1108 }
1109
1110
1111 //=============================================================================
1112 /*!
1113  *  BestSplit
1114  */
1115 //=============================================================================
1116 CORBA::Long SMESH_MeshEditor_i::BestSplit (CORBA::Long                 IDOfQuad,
1117                                            SMESH::NumericalFunctor_ptr Criterion)
1118 {
1119   const SMDS_MeshElement* quad = GetMeshDS()->FindElement(IDOfQuad);
1120   if (quad && quad->GetType() == SMDSAbs_Face && quad->NbNodes() == 4)
1121   {
1122     SMESH::NumericalFunctor_i* aNumericalFunctor =
1123       dynamic_cast<SMESH::NumericalFunctor_i*>(SMESH_Gen_i::GetServant(Criterion).in());
1124     SMESH::Controls::NumericalFunctorPtr aCrit;
1125     if (aNumericalFunctor)
1126       aCrit = aNumericalFunctor->GetNumericalFunctor();
1127     else
1128       aCrit.reset(new SMESH::Controls::AspectRatio());
1129
1130     ::SMESH_MeshEditor anEditor (myMesh);
1131     return anEditor.BestSplit(quad, aCrit);
1132   }
1133   return -1;
1134 }
1135
1136
1137 //=======================================================================
1138 //function : Smooth
1139 //purpose  :
1140 //=======================================================================
1141
1142 CORBA::Boolean
1143   SMESH_MeshEditor_i::Smooth(const SMESH::long_array &              IDsOfElements,
1144                              const SMESH::long_array &              IDsOfFixedNodes,
1145                              CORBA::Long                            MaxNbOfIterations,
1146                              CORBA::Double                          MaxAspectRatio,
1147                              SMESH::SMESH_MeshEditor::Smooth_Method Method)
1148 {
1149   return smooth( IDsOfElements, IDsOfFixedNodes, MaxNbOfIterations,
1150                 MaxAspectRatio, Method, false );
1151 }
1152
1153
1154 //=======================================================================
1155 //function : SmoothParametric
1156 //purpose  :
1157 //=======================================================================
1158
1159 CORBA::Boolean
1160   SMESH_MeshEditor_i::SmoothParametric(const SMESH::long_array &              IDsOfElements,
1161                                        const SMESH::long_array &              IDsOfFixedNodes,
1162                                        CORBA::Long                            MaxNbOfIterations,
1163                                        CORBA::Double                          MaxAspectRatio,
1164                                        SMESH::SMESH_MeshEditor::Smooth_Method Method)
1165 {
1166   return smooth( IDsOfElements, IDsOfFixedNodes, MaxNbOfIterations,
1167                 MaxAspectRatio, Method, true );
1168 }
1169
1170
1171 //=======================================================================
1172 //function : SmoothObject
1173 //purpose  :
1174 //=======================================================================
1175
1176 CORBA::Boolean
1177   SMESH_MeshEditor_i::SmoothObject(SMESH::SMESH_IDSource_ptr              theObject,
1178                                    const SMESH::long_array &              IDsOfFixedNodes,
1179                                    CORBA::Long                            MaxNbOfIterations,
1180                                    CORBA::Double                          MaxAspectRatio,
1181                                    SMESH::SMESH_MeshEditor::Smooth_Method Method)
1182 {
1183   return smoothObject (theObject, IDsOfFixedNodes, MaxNbOfIterations,
1184                        MaxAspectRatio, Method, false);
1185 }
1186
1187
1188 //=======================================================================
1189 //function : SmoothParametricObject
1190 //purpose  :
1191 //=======================================================================
1192
1193 CORBA::Boolean
1194   SMESH_MeshEditor_i::SmoothParametricObject(SMESH::SMESH_IDSource_ptr              theObject,
1195                                    const SMESH::long_array &              IDsOfFixedNodes,
1196                                    CORBA::Long                            MaxNbOfIterations,
1197                                    CORBA::Double                          MaxAspectRatio,
1198                                    SMESH::SMESH_MeshEditor::Smooth_Method Method)
1199 {
1200   return smoothObject (theObject, IDsOfFixedNodes, MaxNbOfIterations,
1201                        MaxAspectRatio, Method, true);
1202 }
1203
1204
1205 //=============================================================================
1206 /*!
1207  *
1208  */
1209 //=============================================================================
1210
1211 CORBA::Boolean
1212   SMESH_MeshEditor_i::smooth(const SMESH::long_array &              IDsOfElements,
1213                              const SMESH::long_array &              IDsOfFixedNodes,
1214                              CORBA::Long                            MaxNbOfIterations,
1215                              CORBA::Double                          MaxAspectRatio,
1216                              SMESH::SMESH_MeshEditor::Smooth_Method Method,
1217                              bool                                   IsParametric)
1218 {
1219   initData();
1220
1221   SMESHDS_Mesh* aMesh = GetMeshDS();
1222
1223   TIDSortedElemSet elements;
1224   arrayToSet(IDsOfElements, aMesh, elements, SMDSAbs_Face);
1225
1226   set<const SMDS_MeshNode*> fixedNodes;
1227   for (int i = 0; i < IDsOfFixedNodes.length(); i++) {
1228     CORBA::Long index = IDsOfFixedNodes[i];
1229     const SMDS_MeshNode * node = aMesh->FindNode(index);
1230     if ( node )
1231       fixedNodes.insert( node );
1232   }
1233   ::SMESH_MeshEditor::SmoothMethod method = ::SMESH_MeshEditor::LAPLACIAN;
1234   if ( Method != SMESH::SMESH_MeshEditor::LAPLACIAN_SMOOTH )
1235     method = ::SMESH_MeshEditor::CENTROIDAL;
1236
1237   ::SMESH_MeshEditor anEditor( myMesh );
1238   anEditor.Smooth(elements, fixedNodes, method,
1239                   MaxNbOfIterations, MaxAspectRatio, IsParametric );
1240
1241   storeResult(anEditor);
1242
1243   // Update Python script
1244   TPythonDump() << "isDone = " << this << "."
1245                 << (IsParametric ? "SmoothParametric( " : "Smooth( ")
1246                 << IDsOfElements << ", "     << IDsOfFixedNodes << ", "
1247                 << MaxNbOfIterations << ", " << MaxAspectRatio << ", "
1248                 << "SMESH.SMESH_MeshEditor."
1249                 << ( Method == SMESH::SMESH_MeshEditor::CENTROIDAL_SMOOTH ?
1250                      "CENTROIDAL_SMOOTH )" : "LAPLACIAN_SMOOTH )");
1251 #ifdef _DEBUG_
1252   TPythonDump() << "print 'Smooth: ', isDone";
1253 #endif
1254
1255   return true;
1256 }
1257
1258
1259 //=============================================================================
1260 /*!
1261  *
1262  */
1263 //=============================================================================
1264
1265 CORBA::Boolean
1266 SMESH_MeshEditor_i::smoothObject(SMESH::SMESH_IDSource_ptr              theObject,
1267                                  const SMESH::long_array &              IDsOfFixedNodes,
1268                                  CORBA::Long                            MaxNbOfIterations,
1269                                  CORBA::Double                          MaxAspectRatio,
1270                                  SMESH::SMESH_MeshEditor::Smooth_Method Method,
1271                                  bool                                   IsParametric)
1272 {
1273   initData();
1274
1275   SMESH::long_array_var anElementsId = theObject->GetIDs();
1276   CORBA::Boolean isDone = smooth (anElementsId, IDsOfFixedNodes, MaxNbOfIterations,
1277                                   MaxAspectRatio, Method, IsParametric);
1278
1279   // Clear python line(s), created by Smooth()
1280   SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
1281   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
1282 #ifdef _DEBUG_
1283   aSMESHGen->RemoveLastFromPythonScript(aSMESHGen->GetCurrentStudyID());
1284 #endif
1285
1286   // Update Python script
1287   TPythonDump() << "isDone = " << this << "."
1288                 << (IsParametric ? "SmoothParametricObject( " : "SmoothObject( ")
1289                 << theObject << ", " << IDsOfFixedNodes << ", "
1290                 << MaxNbOfIterations << ", " << MaxAspectRatio << ", "
1291                 << "SMESH.SMESH_MeshEditor."
1292                 << ( Method == SMESH::SMESH_MeshEditor::CENTROIDAL_SMOOTH ?
1293                      "CENTROIDAL_SMOOTH )" : "LAPLACIAN_SMOOTH )");
1294 #ifdef _DEBUG_
1295   TPythonDump() << "print 'SmoothObject: ', isDone";
1296 #endif
1297
1298   return isDone;
1299 }
1300
1301
1302 //=============================================================================
1303 /*!
1304  *
1305  */
1306 //=============================================================================
1307
1308 void SMESH_MeshEditor_i::RenumberNodes()
1309 {
1310   // Update Python script
1311   TPythonDump() << this << ".RenumberNodes()";
1312
1313   GetMeshDS()->Renumber( true );
1314 }
1315
1316
1317 //=============================================================================
1318 /*!
1319  *
1320  */
1321 //=============================================================================
1322
1323 void SMESH_MeshEditor_i::RenumberElements()
1324 {
1325   // Update Python script
1326   TPythonDump() << this << ".RenumberElements()";
1327
1328   GetMeshDS()->Renumber( false );
1329 }
1330
1331 //=======================================================================
1332   /*!
1333    * \brief Return groups by their IDs
1334    */
1335 //=======================================================================
1336
1337 SMESH::ListOfGroups* SMESH_MeshEditor_i::getGroups(const std::list<int>* groupIDs)
1338 {
1339   if ( !groupIDs )
1340     return 0;
1341   myMesh_i->CreateGroupServants();
1342   return myMesh_i->GetGroups( *groupIDs );
1343 }
1344
1345 //=======================================================================
1346 //function : rotationSweep
1347 //purpose  : 
1348 //=======================================================================
1349
1350 SMESH::ListOfGroups*
1351 SMESH_MeshEditor_i::rotationSweep(const SMESH::long_array & theIDsOfElements,
1352                                   const SMESH::AxisStruct & theAxis,
1353                                   CORBA::Double             theAngleInRadians,
1354                                   CORBA::Long               theNbOfSteps,
1355                                   CORBA::Double             theTolerance,
1356                                   const bool                theMakeGroups)
1357 {
1358   initData();
1359
1360   TIDSortedElemSet inElements, copyElements;
1361   arrayToSet(theIDsOfElements, GetMeshDS(), inElements);
1362
1363   TIDSortedElemSet* workElements = & inElements;
1364   TPreviewMesh      tmpMesh( SMDSAbs_Face );
1365   SMESH_Mesh*       mesh = 0;
1366   bool              makeWalls=true;
1367   if ( myPreviewMode )
1368   {
1369     SMDSAbs_ElementType select = SMDSAbs_All, avoid = SMDSAbs_Volume;
1370     tmpMesh.Copy( inElements, copyElements, select, avoid );
1371     mesh = &tmpMesh;
1372     workElements = & copyElements;
1373     //makeWalls = false;
1374   }
1375   else
1376   {
1377     mesh = myMesh;
1378   }
1379
1380   gp_Ax1 Ax1 (gp_Pnt( theAxis.x,  theAxis.y,  theAxis.z ),
1381               gp_Vec( theAxis.vx, theAxis.vy, theAxis.vz ));
1382
1383   ::SMESH_MeshEditor anEditor( mesh );
1384   ::SMESH_MeshEditor::PGroupIDs groupIds =
1385     anEditor.RotationSweep (*workElements, Ax1, theAngleInRadians,
1386                             theNbOfSteps, theTolerance, theMakeGroups, makeWalls);
1387   storeResult(anEditor);
1388
1389   return theMakeGroups ? getGroups(groupIds.get()) : 0;
1390 }
1391
1392 //=======================================================================
1393 //function : RotationSweep
1394 //purpose  :
1395 //=======================================================================
1396
1397 void SMESH_MeshEditor_i::RotationSweep(const SMESH::long_array & theIDsOfElements,
1398                                        const SMESH::AxisStruct & theAxis,
1399                                        CORBA::Double             theAngleInRadians,
1400                                        CORBA::Long               theNbOfSteps,
1401                                        CORBA::Double             theTolerance)
1402 {
1403   if ( !myPreviewMode ) {
1404     TPythonDump() << this << ".RotationSweep( "
1405                   << theIDsOfElements << ", "
1406                   << theAxis << ", "
1407                   << theAngleInRadians << ", "
1408                   << theNbOfSteps << ", "
1409                   << theTolerance << " )";
1410   }
1411   rotationSweep(theIDsOfElements,
1412                 theAxis,
1413                 theAngleInRadians,
1414                 theNbOfSteps,
1415                 theTolerance,
1416                 false);
1417 }
1418
1419 //=======================================================================
1420 //function : RotationSweepMakeGroups
1421 //purpose  : 
1422 //=======================================================================
1423
1424 SMESH::ListOfGroups*
1425 SMESH_MeshEditor_i::RotationSweepMakeGroups(const SMESH::long_array& theIDsOfElements,
1426                                             const SMESH::AxisStruct& theAxis,
1427                                             CORBA::Double            theAngleInRadians,
1428                                             CORBA::Long              theNbOfSteps,
1429                                             CORBA::Double            theTolerance)
1430 {
1431   SMESH::ListOfGroups *aGroups = rotationSweep(theIDsOfElements,
1432                                                theAxis,
1433                                                theAngleInRadians,
1434                                                theNbOfSteps,
1435                                                theTolerance,
1436                                                true);
1437   if ( !myPreviewMode ) {
1438     TPythonDump aPythonDump;
1439     DumpGroupsList(aPythonDump,aGroups);
1440     aPythonDump<< this << ".RotationSweepMakeGroups( "
1441                << theIDsOfElements << ", "
1442                << theAxis << ", "
1443                << theAngleInRadians << ", "
1444                << theNbOfSteps << ", "
1445                << theTolerance << " )";
1446   }
1447   return aGroups;
1448 }
1449
1450 //=======================================================================
1451 //function : RotationSweepObject
1452 //purpose  :
1453 //=======================================================================
1454
1455 void SMESH_MeshEditor_i::RotationSweepObject(SMESH::SMESH_IDSource_ptr theObject,
1456                                              const SMESH::AxisStruct & theAxis,
1457                                              CORBA::Double             theAngleInRadians,
1458                                              CORBA::Long               theNbOfSteps,
1459                                              CORBA::Double             theTolerance)
1460 {
1461   if ( !myPreviewMode ) {
1462     TPythonDump() << "axis = " << theAxis;
1463     TPythonDump() << this << ".RotationSweepObject( "
1464                   << theObject
1465                   << ", axis, "
1466                   << theAngleInRadians << ", "
1467                   << theNbOfSteps << ", "
1468                   << theTolerance << " )";
1469   }
1470   SMESH::long_array_var anElementsId = theObject->GetIDs();
1471   rotationSweep(anElementsId,
1472                 theAxis,
1473                 theAngleInRadians,
1474                 theNbOfSteps,
1475                 theTolerance,
1476                 false);
1477 }
1478
1479 //=======================================================================
1480 //function : RotationSweepObjectMakeGroups
1481 //purpose  : 
1482 //=======================================================================
1483
1484 SMESH::ListOfGroups*
1485 SMESH_MeshEditor_i::RotationSweepObjectMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
1486                                                   const SMESH::AxisStruct&  theAxis,
1487                                                   CORBA::Double             theAngleInRadians,
1488                                                   CORBA::Long               theNbOfSteps,
1489                                                   CORBA::Double             theTolerance)
1490 {
1491   SMESH::long_array_var anElementsId = theObject->GetIDs();
1492   SMESH::ListOfGroups *aGroups = rotationSweep(anElementsId,
1493                                                theAxis,
1494                                                theAngleInRadians,
1495                                                theNbOfSteps,
1496                                                theTolerance,
1497                                                true);
1498   if ( !myPreviewMode ) {
1499     TPythonDump() << "axis = " << theAxis;
1500     TPythonDump aPythonDump;
1501     DumpGroupsList(aPythonDump,aGroups);
1502     aPythonDump<< this << ".RotationSweepObjectMakeGroups( "
1503                << theObject
1504                << ", axis, "
1505                << theAngleInRadians << ", "
1506                << theNbOfSteps << ", "
1507                << theTolerance << " )";
1508   }
1509   return aGroups;
1510 }
1511
1512
1513 //=======================================================================
1514 //function : extrusionSweep
1515 //purpose  : 
1516 //=======================================================================
1517
1518 SMESH::ListOfGroups*
1519 SMESH_MeshEditor_i::extrusionSweep(const SMESH::long_array & theIDsOfElements,
1520                                    const SMESH::DirStruct &  theStepVector,
1521                                    CORBA::Long               theNbOfSteps,
1522                                    const bool                theMakeGroups,
1523                                    const SMDSAbs_ElementType theElementType)
1524 {
1525   initData();
1526
1527   try {   
1528 #ifdef NO_CAS_CATCH
1529     OCC_CATCH_SIGNALS;
1530 #endif
1531     TIDSortedElemSet elements;
1532     arrayToSet(theIDsOfElements, GetMeshDS(), elements, theElementType);
1533
1534     const SMESH::PointStruct * P = &theStepVector.PS;
1535     gp_Vec stepVec( P->x, P->y, P->z );
1536
1537     TElemOfElemListMap aHystory;
1538     ::SMESH_MeshEditor anEditor( myMesh );
1539     ::SMESH_MeshEditor::PGroupIDs groupIds =
1540         anEditor.ExtrusionSweep (elements, stepVec, theNbOfSteps, aHystory, theMakeGroups);
1541
1542     storeResult(anEditor);
1543
1544     return theMakeGroups ? getGroups(groupIds.get()) : 0;
1545
1546   } catch(Standard_Failure) {
1547     Handle(Standard_Failure) aFail = Standard_Failure::Caught();          
1548     INFOS( "SMESH_MeshEditor_i::ExtrusionSweep fails - "<< aFail->GetMessageString() );
1549   }
1550   return 0;
1551 }
1552
1553 //=======================================================================
1554 //function : ExtrusionSweep
1555 //purpose  :
1556 //=======================================================================
1557
1558 void SMESH_MeshEditor_i::ExtrusionSweep(const SMESH::long_array & theIDsOfElements,
1559                                         const SMESH::DirStruct &  theStepVector,
1560                                         CORBA::Long               theNbOfSteps)
1561 {
1562   extrusionSweep (theIDsOfElements, theStepVector, theNbOfSteps, false );
1563   if ( !myPreviewMode ) {
1564     TPythonDump() << this << ".ExtrusionSweep( "
1565                   << theIDsOfElements << ", " << theStepVector <<", " << theNbOfSteps << " )";
1566   }
1567 }
1568
1569
1570 //=======================================================================
1571 //function : ExtrusionSweepObject
1572 //purpose  :
1573 //=======================================================================
1574
1575 void SMESH_MeshEditor_i::ExtrusionSweepObject(SMESH::SMESH_IDSource_ptr theObject,
1576                                               const SMESH::DirStruct &  theStepVector,
1577                                               CORBA::Long               theNbOfSteps)
1578 {
1579   SMESH::long_array_var anElementsId = theObject->GetIDs();
1580   extrusionSweep (anElementsId, theStepVector, theNbOfSteps, false );
1581   if ( !myPreviewMode ) {
1582     TPythonDump() << "stepVector = " << theStepVector;
1583     TPythonDump() << this << ".ExtrusionSweepObject( "
1584                   << theObject << ", stepVector, " << theNbOfSteps << " )";
1585   }
1586 }
1587
1588 //=======================================================================
1589 //function : ExtrusionSweepObject1D
1590 //purpose  :
1591 //=======================================================================
1592
1593 void SMESH_MeshEditor_i::ExtrusionSweepObject1D(SMESH::SMESH_IDSource_ptr theObject,
1594                                                 const SMESH::DirStruct &  theStepVector,
1595                                                 CORBA::Long               theNbOfSteps)
1596 {
1597   SMESH::long_array_var anElementsId = theObject->GetIDs();
1598   extrusionSweep (anElementsId, theStepVector, theNbOfSteps, false, SMDSAbs_Edge );
1599   if ( !myPreviewMode ) {
1600     TPythonDump() << "stepVector = " << theStepVector;
1601     TPythonDump() << this << ".ExtrusionSweepObject1D( "
1602                   << theObject << ", stepVector, " << theNbOfSteps << " )";
1603   }
1604 }
1605
1606 //=======================================================================
1607 //function : ExtrusionSweepObject2D
1608 //purpose  :
1609 //=======================================================================
1610
1611 void SMESH_MeshEditor_i::ExtrusionSweepObject2D(SMESH::SMESH_IDSource_ptr theObject,
1612                                                 const SMESH::DirStruct &  theStepVector,
1613                                                 CORBA::Long               theNbOfSteps)
1614 {
1615   SMESH::long_array_var anElementsId = theObject->GetIDs();
1616   extrusionSweep (anElementsId, theStepVector, theNbOfSteps, false, SMDSAbs_Face );
1617   if ( !myPreviewMode ) {
1618     TPythonDump() << "stepVector = " << theStepVector;
1619     TPythonDump() << this << ".ExtrusionSweepObject2D( "
1620                   << theObject << ", stepVector, " << theNbOfSteps << " )";
1621   }
1622 }
1623
1624 //=======================================================================
1625 //function : ExtrusionSweepMakeGroups
1626 //purpose  : 
1627 //=======================================================================
1628
1629 SMESH::ListOfGroups*
1630 SMESH_MeshEditor_i::ExtrusionSweepMakeGroups(const SMESH::long_array& theIDsOfElements,
1631                                              const SMESH::DirStruct&  theStepVector,
1632                                              CORBA::Long              theNbOfSteps)
1633 {
1634   SMESH::ListOfGroups* aGroups = extrusionSweep (theIDsOfElements, theStepVector, theNbOfSteps, true );
1635     
1636   if ( !myPreviewMode ) {
1637     TPythonDump aPythonDump;
1638     DumpGroupsList(aPythonDump,aGroups);
1639     aPythonDump  << this << ".ExtrusionSweepMakeGroups( "
1640                  << theIDsOfElements << ", " << theStepVector <<", " << theNbOfSteps << " )";
1641   }
1642   return aGroups;
1643 }
1644 //=======================================================================
1645 //function : ExtrusionSweepObjectMakeGroups
1646 //purpose  : 
1647 //=======================================================================
1648
1649 SMESH::ListOfGroups*
1650 SMESH_MeshEditor_i::ExtrusionSweepObjectMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
1651                                                    const SMESH::DirStruct&   theStepVector,
1652                                                    CORBA::Long               theNbOfSteps)
1653 {
1654   SMESH::long_array_var anElementsId = theObject->GetIDs();
1655   SMESH::ListOfGroups * aGroups = extrusionSweep (anElementsId, theStepVector, theNbOfSteps, true );
1656   
1657   if ( !myPreviewMode ) {
1658     TPythonDump() << "stepVector = " << theStepVector;
1659     TPythonDump aPythonDump;
1660     DumpGroupsList(aPythonDump,aGroups);
1661     aPythonDump<< this << ".ExtrusionSweepObjectMakeGroups( "
1662                << theObject << ", stepVector, " << theNbOfSteps << " )";
1663   }
1664   return aGroups;
1665 }
1666
1667 //=======================================================================
1668 //function : ExtrusionSweepObject1DMakeGroups
1669 //purpose  : 
1670 //=======================================================================
1671
1672 SMESH::ListOfGroups*
1673 SMESH_MeshEditor_i::ExtrusionSweepObject1DMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
1674                                                      const SMESH::DirStruct&   theStepVector,
1675                                                      CORBA::Long               theNbOfSteps)
1676 {
1677   SMESH::long_array_var anElementsId = theObject->GetIDs();
1678   SMESH::ListOfGroups * aGroups = extrusionSweep (anElementsId, theStepVector, theNbOfSteps, true, SMDSAbs_Edge );
1679   if ( !myPreviewMode ) {
1680     TPythonDump() << "stepVector = " << theStepVector;
1681     TPythonDump aPythonDump;
1682     DumpGroupsList(aPythonDump,aGroups);
1683     aPythonDump << this << ".ExtrusionSweepObject1DMakeGroups( "
1684                 << theObject << ", stepVector, " << theNbOfSteps << " )";
1685   }
1686   return aGroups;
1687 }
1688
1689 //=======================================================================
1690 //function : ExtrusionSweepObject2DMakeGroups
1691 //purpose  : 
1692 //=======================================================================
1693
1694 SMESH::ListOfGroups*
1695 SMESH_MeshEditor_i::ExtrusionSweepObject2DMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
1696                                                      const SMESH::DirStruct&   theStepVector,
1697                                                      CORBA::Long               theNbOfSteps)
1698 {
1699   SMESH::long_array_var anElementsId = theObject->GetIDs();
1700   SMESH::ListOfGroups * aGroups = extrusionSweep (anElementsId, theStepVector, theNbOfSteps, true, SMDSAbs_Face );
1701   if ( !myPreviewMode ) {
1702     TPythonDump() << "stepVector = " << theStepVector;
1703     TPythonDump aPythonDump;
1704     DumpGroupsList(aPythonDump,aGroups);
1705     aPythonDump << this << ".ExtrusionSweepObject2DMakeGroups( "
1706                 << theObject << ", stepVector, " << theNbOfSteps << " )";
1707   }
1708   return aGroups;
1709 }
1710
1711
1712 //=======================================================================
1713 //function : advancedExtrusion
1714 //purpose  : 
1715 //=======================================================================
1716
1717 SMESH::ListOfGroups*
1718 SMESH_MeshEditor_i::advancedExtrusion(const SMESH::long_array & theIDsOfElements,
1719                                       const SMESH::DirStruct &  theStepVector,
1720                                       CORBA::Long               theNbOfSteps,
1721                                       CORBA::Long               theExtrFlags,
1722                                       CORBA::Double             theSewTolerance,
1723                                       const bool                theMakeGroups)
1724 {
1725   initData();
1726
1727   TIDSortedElemSet elements;
1728   arrayToSet(theIDsOfElements, GetMeshDS(), elements);
1729
1730   const SMESH::PointStruct * P = &theStepVector.PS;
1731   gp_Vec stepVec( P->x, P->y, P->z );
1732
1733   ::SMESH_MeshEditor anEditor( myMesh );
1734   TElemOfElemListMap aHystory;
1735   ::SMESH_MeshEditor::PGroupIDs groupIds =
1736       anEditor.ExtrusionSweep (elements, stepVec, theNbOfSteps, aHystory,
1737                                theMakeGroups, theExtrFlags, theSewTolerance);
1738   storeResult(anEditor);
1739
1740   return theMakeGroups ? getGroups(groupIds.get()) : 0;
1741 }
1742
1743 //=======================================================================
1744 //function : AdvancedExtrusion
1745 //purpose  :
1746 //=======================================================================
1747
1748 void SMESH_MeshEditor_i::AdvancedExtrusion(const SMESH::long_array & theIDsOfElements,
1749                                            const SMESH::DirStruct &  theStepVector,
1750                                            CORBA::Long               theNbOfSteps,
1751                                            CORBA::Long               theExtrFlags,
1752                                            CORBA::Double             theSewTolerance)
1753 {
1754   if ( !myPreviewMode ) {
1755     TPythonDump() << "stepVector = " << theStepVector;
1756     TPythonDump() << this << ".AdvancedExtrusion("
1757                   << theIDsOfElements
1758                   << ", stepVector, "
1759                   << theNbOfSteps << ","
1760                   << theExtrFlags << ", "
1761                   << theSewTolerance <<  " )";
1762   }
1763   advancedExtrusion( theIDsOfElements,
1764                      theStepVector,
1765                      theNbOfSteps,
1766                      theExtrFlags,
1767                      theSewTolerance,
1768                      false);
1769 }
1770
1771 //=======================================================================
1772 //function : AdvancedExtrusionMakeGroups
1773 //purpose  : 
1774 //=======================================================================
1775
1776 SMESH::ListOfGroups*
1777 SMESH_MeshEditor_i::AdvancedExtrusionMakeGroups(const SMESH::long_array& theIDsOfElements,
1778                                                 const SMESH::DirStruct&  theStepVector,
1779                                                 CORBA::Long              theNbOfSteps,
1780                                                 CORBA::Long              theExtrFlags,
1781                                                 CORBA::Double            theSewTolerance)
1782 {
1783   SMESH::ListOfGroups * aGroups = advancedExtrusion( theIDsOfElements,
1784                                                     theStepVector,
1785                                                     theNbOfSteps,
1786                                                     theExtrFlags,
1787                                                     theSewTolerance,
1788                                                     true);
1789   
1790   if ( !myPreviewMode ) {
1791     TPythonDump() << "stepVector = " << theStepVector;
1792     TPythonDump aPythonDump;
1793     DumpGroupsList(aPythonDump,aGroups);
1794     aPythonDump << this << ".AdvancedExtrusionMakeGroups("
1795                 << theIDsOfElements
1796                 << ", stepVector, "
1797                 << theNbOfSteps << ","
1798                 << theExtrFlags << ", "
1799                 << theSewTolerance <<  " )";
1800   }
1801   return aGroups;
1802 }
1803
1804
1805 //================================================================================
1806 /*!
1807  * \brief Convert extrusion error to IDL enum
1808  */
1809 //================================================================================
1810
1811 #define RETCASE(enm) case ::SMESH_MeshEditor::enm: return SMESH::SMESH_MeshEditor::enm;
1812
1813 static SMESH::SMESH_MeshEditor::Extrusion_Error convExtrError( const::SMESH_MeshEditor::Extrusion_Error e )
1814 {
1815   switch ( e ) {
1816   RETCASE( EXTR_OK );
1817   RETCASE( EXTR_NO_ELEMENTS );
1818   RETCASE( EXTR_PATH_NOT_EDGE );
1819   RETCASE( EXTR_BAD_PATH_SHAPE );
1820   RETCASE( EXTR_BAD_STARTING_NODE );
1821   RETCASE( EXTR_BAD_ANGLES_NUMBER );
1822   RETCASE( EXTR_CANT_GET_TANGENT );
1823   }
1824   return SMESH::SMESH_MeshEditor::EXTR_OK;
1825 }
1826
1827
1828 //=======================================================================
1829 //function : extrusionAlongPath
1830 //purpose  : 
1831 //=======================================================================
1832
1833 SMESH::ListOfGroups*
1834 SMESH_MeshEditor_i::extrusionAlongPath(const SMESH::long_array &   theIDsOfElements,
1835                                        SMESH::SMESH_Mesh_ptr       thePathMesh,
1836                                        GEOM::GEOM_Object_ptr       thePathShape,
1837                                        CORBA::Long                 theNodeStart,
1838                                        CORBA::Boolean              theHasAngles,
1839                                        const SMESH::double_array & theAngles,
1840                                        CORBA::Boolean              theHasRefPoint,
1841                                        const SMESH::PointStruct &  theRefPoint,
1842                                        const bool                  theMakeGroups,
1843                                        SMESH::SMESH_MeshEditor::Extrusion_Error & theError)
1844 {
1845   initData();
1846
1847   if ( thePathMesh->_is_nil() || thePathShape->_is_nil() ) {
1848     theError = SMESH::SMESH_MeshEditor::EXTR_BAD_PATH_SHAPE;
1849     return 0;
1850   }
1851   SMESH_Mesh_i* aMeshImp = SMESH::DownCast<SMESH_Mesh_i*>( thePathMesh );
1852
1853   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( thePathShape );
1854   SMESH_subMesh* aSubMesh = aMeshImp->GetImpl().GetSubMesh( aShape );
1855
1856   if ( !aSubMesh || !aSubMesh->GetSubMeshDS()) {
1857     theError = SMESH::SMESH_MeshEditor::EXTR_BAD_PATH_SHAPE;
1858     return 0;
1859   }
1860
1861   SMDS_MeshNode* nodeStart = (SMDS_MeshNode*)aMeshImp->GetImpl().GetMeshDS()->FindNode(theNodeStart);
1862   if ( !nodeStart ) {
1863     theError = SMESH::SMESH_MeshEditor::EXTR_BAD_STARTING_NODE;
1864     return 0;
1865   }
1866
1867   TIDSortedElemSet elements;
1868   arrayToSet(theIDsOfElements, GetMeshDS(), elements);
1869
1870   list<double> angles;
1871   for (int i = 0; i < theAngles.length(); i++) {
1872     angles.push_back( theAngles[i] );
1873   }
1874
1875   gp_Pnt refPnt( theRefPoint.x, theRefPoint.y, theRefPoint.z );
1876
1877   int nbOldGroups = myMesh->NbGroup();
1878
1879   ::SMESH_MeshEditor anEditor( myMesh );
1880   ::SMESH_MeshEditor::Extrusion_Error error =
1881       anEditor.ExtrusionAlongTrack( elements, aSubMesh, nodeStart,
1882                                     theHasAngles, angles,
1883                                     theHasRefPoint, refPnt, theMakeGroups );
1884   storeResult(anEditor);
1885   theError = convExtrError( error );
1886
1887   if ( theMakeGroups ) {
1888     list<int> groupIDs = myMesh->GetGroupIds();
1889     list<int>::iterator newBegin = groupIDs.begin();
1890     std::advance( newBegin, nbOldGroups ); // skip old groups
1891     groupIDs.erase( groupIDs.begin(), newBegin );
1892     return getGroups( & groupIDs );
1893   }
1894   return 0;
1895 }
1896
1897 //=======================================================================
1898 //function : ExtrusionAlongPath
1899 //purpose  :
1900 //=======================================================================
1901
1902 SMESH::SMESH_MeshEditor::Extrusion_Error
1903   SMESH_MeshEditor_i::ExtrusionAlongPath(const SMESH::long_array &   theIDsOfElements,
1904                                          SMESH::SMESH_Mesh_ptr       thePathMesh,
1905                                          GEOM::GEOM_Object_ptr       thePathShape,
1906                                          CORBA::Long                 theNodeStart,
1907                                          CORBA::Boolean              theHasAngles,
1908                                          const SMESH::double_array & theAngles,
1909                                          CORBA::Boolean              theHasRefPoint,
1910                                          const SMESH::PointStruct &  theRefPoint)
1911 {
1912   if ( !myPreviewMode ) {
1913     TPythonDump() << "error = " << this << ".ExtrusionAlongPath( "
1914                   << theIDsOfElements << ", "
1915                   << thePathMesh      << ", "
1916                   << thePathShape     << ", "
1917                   << theNodeStart     << ", "
1918                   << theHasAngles     << ", "
1919                   << theAngles        << ", "
1920                   << theHasRefPoint   << ", "
1921                   << "SMESH.PointStruct( "
1922                   << ( theHasRefPoint ? theRefPoint.x : 0 ) << ", "
1923                   << ( theHasRefPoint ? theRefPoint.y : 0 ) << ", "
1924                   << ( theHasRefPoint ? theRefPoint.z : 0 ) << " ) )";
1925   }
1926   SMESH::SMESH_MeshEditor::Extrusion_Error anError;
1927   extrusionAlongPath( theIDsOfElements,
1928                       thePathMesh,
1929                       thePathShape,
1930                       theNodeStart,
1931                       theHasAngles,
1932                       theAngles,
1933                       theHasRefPoint,
1934                       theRefPoint,
1935                       false,
1936                       anError);
1937   return anError;
1938 }
1939
1940 //=======================================================================
1941 //function : ExtrusionAlongPathObject
1942 //purpose  :
1943 //=======================================================================
1944
1945 SMESH::SMESH_MeshEditor::Extrusion_Error
1946 SMESH_MeshEditor_i::ExtrusionAlongPathObject(SMESH::SMESH_IDSource_ptr   theObject,
1947                                              SMESH::SMESH_Mesh_ptr       thePathMesh,
1948                                              GEOM::GEOM_Object_ptr       thePathShape,
1949                                              CORBA::Long                 theNodeStart,
1950                                              CORBA::Boolean              theHasAngles,
1951                                              const SMESH::double_array & theAngles,
1952                                              CORBA::Boolean              theHasRefPoint,
1953                                              const SMESH::PointStruct &  theRefPoint)
1954 {
1955   if ( !myPreviewMode ) {
1956     TPythonDump() << "rotAngles = " << theAngles;
1957
1958     if ( theHasRefPoint )
1959       TPythonDump() << "refPoint = SMESH.PointStruct( "
1960                     << theRefPoint.x << ", "
1961                     << theRefPoint.y << ", "
1962                     << theRefPoint.z << " )";
1963     else
1964       TPythonDump() << "refPoint = SMESH.PointStruct( 0,0,0 )";
1965
1966     TPythonDump() << "error = " << this << ".ExtrusionAlongPathObject( "
1967                   << theObject        << ", "
1968                   << thePathMesh      << ", "
1969                   << thePathShape     << ", "
1970                   << theNodeStart     << ", "
1971                   << theHasAngles     << ", "
1972                   << "rotAngles"      << ", "
1973                   << theHasRefPoint   << ", refPoint )";
1974   }
1975   SMESH::SMESH_MeshEditor::Extrusion_Error anError;
1976   SMESH::long_array_var anElementsId = theObject->GetIDs();
1977   extrusionAlongPath( anElementsId,
1978                       thePathMesh,
1979                       thePathShape,
1980                       theNodeStart,
1981                       theHasAngles,
1982                       theAngles,
1983                       theHasRefPoint,
1984                       theRefPoint,
1985                       false,
1986                       anError);
1987   return anError;
1988 }
1989
1990
1991 //=======================================================================
1992 //function : ExtrusionAlongPathMakeGroups
1993 //purpose  : 
1994 //=======================================================================
1995
1996 SMESH::ListOfGroups*
1997 SMESH_MeshEditor_i::ExtrusionAlongPathMakeGroups(const SMESH::long_array&   theIDsOfElements,
1998                                                  SMESH::SMESH_Mesh_ptr      thePathMesh,
1999                                                  GEOM::GEOM_Object_ptr      thePathShape,
2000                                                  CORBA::Long                theNodeStart,
2001                                                  CORBA::Boolean             theHasAngles,
2002                                                  const SMESH::double_array& theAngles,
2003                                                  CORBA::Boolean             theHasRefPoint,
2004                                                  const SMESH::PointStruct&  theRefPoint,
2005                                                  SMESH::SMESH_MeshEditor::Extrusion_Error& Error)
2006 {
2007     SMESH::ListOfGroups * aGroups =  extrusionAlongPath( theIDsOfElements,
2008                                                          thePathMesh,
2009                                                          thePathShape,
2010                                                          theNodeStart,
2011                                                          theHasAngles,
2012                                                          theAngles,
2013                                                          theHasRefPoint,
2014                                                          theRefPoint,
2015                                                          true,
2016                                                          Error);
2017   if ( !myPreviewMode ) {
2018     bool isDumpGroups = aGroups && aGroups->length() > 0;
2019     TPythonDump aPythonDump;
2020     if(isDumpGroups) {
2021       aPythonDump << "("<<aGroups;
2022     }
2023     if(isDumpGroups)
2024       aPythonDump << ", error)";
2025     else
2026       aPythonDump <<"error";
2027     
2028     aPythonDump<<" = "<< this << ".ExtrusionAlongPathMakeGroups( "
2029                << theIDsOfElements << ", "
2030                << thePathMesh      << ", "
2031                << thePathShape     << ", "
2032                << theNodeStart     << ", "
2033                << theHasAngles     << ", "
2034                << theAngles        << ", "
2035                << theHasRefPoint   << ", "
2036                << "SMESH.PointStruct( "
2037                << ( theHasRefPoint ? theRefPoint.x : 0 ) << ", "
2038                << ( theHasRefPoint ? theRefPoint.y : 0 ) << ", "
2039                << ( theHasRefPoint ? theRefPoint.z : 0 ) << " ) )";
2040   }
2041   return aGroups;
2042 }
2043
2044 //=======================================================================
2045 //function : ExtrusionAlongPathObjectMakeGroups
2046 //purpose  : 
2047 //=======================================================================
2048
2049 SMESH::ListOfGroups* SMESH_MeshEditor_i::
2050 ExtrusionAlongPathObjectMakeGroups(SMESH::SMESH_IDSource_ptr  theObject,
2051                                    SMESH::SMESH_Mesh_ptr      thePathMesh,
2052                                    GEOM::GEOM_Object_ptr      thePathShape,
2053                                    CORBA::Long                theNodeStart,
2054                                    CORBA::Boolean             theHasAngles,
2055                                    const SMESH::double_array& theAngles,
2056                                    CORBA::Boolean             theHasRefPoint,
2057                                    const SMESH::PointStruct&  theRefPoint,
2058                                    SMESH::SMESH_MeshEditor::Extrusion_Error& Error)
2059 {
2060   SMESH::long_array_var anElementsId = theObject->GetIDs();
2061   SMESH::ListOfGroups * aGroups = extrusionAlongPath( anElementsId,
2062                                                       thePathMesh,
2063                                                       thePathShape,
2064                                                       theNodeStart,
2065                                                       theHasAngles,
2066                                                       theAngles,
2067                                                       theHasRefPoint,
2068                                                       theRefPoint,
2069                                                       true,
2070                                                       Error);
2071   
2072   if ( !myPreviewMode ) {
2073     TPythonDump() << "rotAngles = " << theAngles;
2074
2075     if ( theHasRefPoint )
2076       TPythonDump() << "refPoint = SMESH.PointStruct( "
2077                     << theRefPoint.x << ", "
2078                     << theRefPoint.y << ", "
2079                     << theRefPoint.z << " )";
2080     else
2081       TPythonDump() << "refPoint = SMESH.PointStruct( 0,0,0 )";
2082     
2083     bool isDumpGroups = aGroups && aGroups->length() > 0;
2084     TPythonDump aPythonDump;
2085     if(isDumpGroups) {
2086       aPythonDump << "("<<aGroups;
2087     }
2088     if(isDumpGroups)
2089       aPythonDump << ", error)";
2090     else
2091       aPythonDump <<"error";
2092
2093     aPythonDump << " = " << this << ".ExtrusionAlongPathObjectMakeGroups( "
2094                 << theObject << ", "
2095                 << thePathMesh      << ", "
2096                 << thePathShape     << ", "
2097                 << theNodeStart     << ", "
2098                 << theHasAngles     << ", "
2099                 << "rotAngles"      << ", "
2100                 << theHasRefPoint   << ", refPoint )";
2101   }
2102   return aGroups;
2103 }
2104
2105 //================================================================================
2106 /*!
2107  * \brief Compute rotation angles for ExtrusionAlongPath as linear variation
2108  * of given angles along path steps
2109   * \param PathMesh mesh containing a 1D sub-mesh on the edge, along 
2110   *                which proceeds the extrusion
2111   * \param PathShape is shape(edge); as the mesh can be complex, the edge 
2112   *                 is used to define the sub-mesh for the path
2113  */
2114 //================================================================================
2115
2116 SMESH::double_array*
2117 SMESH_MeshEditor_i::LinearAnglesVariation(SMESH::SMESH_Mesh_ptr       thePathMesh,
2118                                           GEOM::GEOM_Object_ptr       thePathShape,
2119                                           const SMESH::double_array & theAngles)
2120 {
2121   SMESH::double_array_var aResult = new SMESH::double_array();
2122   int nbAngles = theAngles.length();
2123   if ( nbAngles > 0 && !thePathMesh->_is_nil() && !thePathShape->_is_nil() )
2124   {
2125     SMESH_Mesh_i* aMeshImp = SMESH::DownCast<SMESH_Mesh_i*>( thePathMesh );
2126     TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( thePathShape );
2127     SMESH_subMesh* aSubMesh = aMeshImp->GetImpl().GetSubMesh( aShape );
2128     if ( !aSubMesh || !aSubMesh->GetSubMeshDS())
2129       return aResult._retn();
2130     int nbSteps = aSubMesh->GetSubMeshDS()->NbElements();
2131     if ( nbSteps == nbAngles )
2132     {
2133       aResult.inout() = theAngles;
2134     }
2135     else
2136     {
2137       aResult->length( nbSteps );
2138       double rAn2St = double( nbAngles ) / double( nbSteps );
2139       double angPrev = 0, angle;
2140       for ( int iSt = 0; iSt < nbSteps; ++iSt )
2141       {
2142         double angCur = rAn2St * ( iSt+1 );
2143         double angCurFloor  = floor( angCur );
2144         double angPrevFloor = floor( angPrev );
2145         if ( angPrevFloor == angCurFloor )
2146           angle = rAn2St * theAngles[ int( angCurFloor ) ];
2147         else
2148         {
2149           int iP = int( angPrevFloor );
2150           double angPrevCeil = ceil(angPrev);
2151           angle = ( angPrevCeil - angPrev ) * theAngles[ iP ];
2152           
2153           int iC = int( angCurFloor );
2154           if ( iC < nbAngles )
2155             angle += ( angCur - angCurFloor ) * theAngles[ iC ];
2156
2157           iP = int( angPrevCeil );
2158           while ( iC-- > iP )
2159             angle += theAngles[ iC ];
2160         }
2161         aResult[ iSt ] = angle;
2162         angPrev = angCur;
2163       }
2164     }
2165   }
2166   // Update Python script
2167   TPythonDump() << "rotAngles = " << theAngles;
2168   TPythonDump() << "rotAngles = " << this << ".LinearAnglesVariation( "
2169                 << thePathMesh  << ", "
2170                 << thePathShape << ", "
2171                 << "rotAngles )";
2172
2173   return aResult._retn();
2174 }
2175
2176
2177 //=======================================================================
2178 //function : mirror
2179 //purpose  : 
2180 //=======================================================================
2181
2182 SMESH::ListOfGroups*
2183 SMESH_MeshEditor_i::mirror(const SMESH::long_array &           theIDsOfElements,
2184                            const SMESH::AxisStruct &           theAxis,
2185                            SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
2186                            CORBA::Boolean                      theCopy,
2187                            const bool                          theMakeGroups,
2188                            ::SMESH_Mesh*                       theTargetMesh)
2189 {
2190   initData();
2191
2192   TIDSortedElemSet elements;
2193   arrayToSet(theIDsOfElements, GetMeshDS(), elements);
2194
2195   gp_Pnt P ( theAxis.x, theAxis.y, theAxis.z );
2196   gp_Vec V ( theAxis.vx, theAxis.vy, theAxis.vz );
2197
2198   gp_Trsf aTrsf;
2199   switch ( theMirrorType ) {
2200   case  SMESH::SMESH_MeshEditor::POINT:
2201     aTrsf.SetMirror( P );
2202     break;
2203   case  SMESH::SMESH_MeshEditor::AXIS:
2204     aTrsf.SetMirror( gp_Ax1( P, V ));
2205     break;
2206   default:
2207     aTrsf.SetMirror( gp_Ax2( P, V ));
2208   }
2209
2210   ::SMESH_MeshEditor anEditor( myMesh );
2211   ::SMESH_MeshEditor::PGroupIDs groupIds =
2212       anEditor.Transform (elements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
2213
2214   if(theCopy) {
2215     storeResult(anEditor);
2216   }
2217   return theMakeGroups ? getGroups(groupIds.get()) : 0;
2218 }
2219
2220 //=======================================================================
2221 //function : Mirror
2222 //purpose  :
2223 //=======================================================================
2224
2225 void SMESH_MeshEditor_i::Mirror(const SMESH::long_array &           theIDsOfElements,
2226                                 const SMESH::AxisStruct &           theAxis,
2227                                 SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
2228                                 CORBA::Boolean                      theCopy)
2229 {
2230   if ( !myPreviewMode ) {
2231     TPythonDump() << this << ".Mirror( "
2232                   << theIDsOfElements << ", "
2233                   << theAxis          << ", "
2234                   << mirrorTypeName(theMirrorType) << ", "
2235                   << theCopy          << " )";
2236   }
2237   mirror(theIDsOfElements, theAxis, theMirrorType, theCopy, false);
2238 }
2239
2240
2241 //=======================================================================
2242 //function : MirrorObject
2243 //purpose  :
2244 //=======================================================================
2245
2246 void SMESH_MeshEditor_i::MirrorObject(SMESH::SMESH_IDSource_ptr           theObject,
2247                                       const SMESH::AxisStruct &           theAxis,
2248                                       SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
2249                                       CORBA::Boolean                      theCopy)
2250 {
2251   if ( !myPreviewMode ) {
2252     TPythonDump() << this << ".MirrorObject( "
2253                   << theObject << ", "
2254                   << theAxis   << ", "
2255                   << mirrorTypeName(theMirrorType) << ", "
2256                   << theCopy   << " )";
2257   }
2258   SMESH::long_array_var anElementsId = theObject->GetIDs();
2259   mirror(anElementsId, theAxis, theMirrorType, theCopy, false);
2260 }
2261
2262 //=======================================================================
2263 //function : MirrorMakeGroups
2264 //purpose  : 
2265 //=======================================================================
2266
2267 SMESH::ListOfGroups*
2268 SMESH_MeshEditor_i::MirrorMakeGroups(const SMESH::long_array&            theIDsOfElements,
2269                                      const SMESH::AxisStruct&            theMirror,
2270                                      SMESH::SMESH_MeshEditor::MirrorType theMirrorType)
2271 {
2272   SMESH::ListOfGroups * aGroups = mirror(theIDsOfElements, theMirror, theMirrorType, true, true);
2273   if ( !myPreviewMode ) {
2274     TPythonDump aPythonDump;
2275     DumpGroupsList(aPythonDump,aGroups);
2276     aPythonDump << this << ".MirrorMakeGroups( "
2277                 << theIDsOfElements << ", "
2278                 << theMirror << ", "
2279                 << mirrorTypeName(theMirrorType) << " )";
2280   }
2281   return aGroups;
2282 }
2283
2284 //=======================================================================
2285 //function : MirrorObjectMakeGroups
2286 //purpose  : 
2287 //=======================================================================
2288
2289 SMESH::ListOfGroups*
2290 SMESH_MeshEditor_i::MirrorObjectMakeGroups(SMESH::SMESH_IDSource_ptr           theObject,
2291                                            const SMESH::AxisStruct&            theMirror,
2292                                            SMESH::SMESH_MeshEditor::MirrorType theMirrorType)
2293 {
2294   SMESH::long_array_var anElementsId = theObject->GetIDs();
2295   SMESH::ListOfGroups * aGroups = mirror(anElementsId, theMirror, theMirrorType, true, true);
2296   if ( !myPreviewMode ) {
2297     TPythonDump aPythonDump;
2298     DumpGroupsList(aPythonDump,aGroups);
2299     aPythonDump << this << ".MirrorObjectMakeGroups( "
2300                 << theObject << ", "
2301                 << theMirror << ", "
2302                 << mirrorTypeName(theMirrorType) << " )";
2303   }
2304   return aGroups;
2305 }
2306
2307 //=======================================================================
2308 //function : MirrorMakeMesh
2309 //purpose  : 
2310 //=======================================================================
2311
2312 SMESH::SMESH_Mesh_ptr
2313 SMESH_MeshEditor_i::MirrorMakeMesh(const SMESH::long_array&            theIDsOfElements,
2314                                    const SMESH::AxisStruct&            theMirror,
2315                                    SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
2316                                    CORBA::Boolean                      theCopyGroups,
2317                                    const char*                         theMeshName)
2318 {
2319   SMESH_Mesh_i* mesh_i;
2320   SMESH::SMESH_Mesh_var mesh;
2321   { // open new scope to dump "MakeMesh" command
2322     // and then "GetGroups" using SMESH_Mesh::GetGroups()
2323     
2324     TPythonDump pydump; // to prevent dump at mesh creation
2325
2326     mesh = makeMesh( theMeshName );
2327     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
2328     if (mesh_i) {
2329       mirror(theIDsOfElements, theMirror, theMirrorType,
2330              false, theCopyGroups, & mesh_i->GetImpl());
2331       mesh_i->CreateGroupServants();
2332     }
2333     
2334     if ( !myPreviewMode ) {
2335       pydump << mesh << " = " << this << ".MirrorMakeMesh( "
2336              << theIDsOfElements << ", "
2337              << theMirror   << ", "
2338              << mirrorTypeName(theMirrorType) << ", "
2339              << theCopyGroups << ", '"
2340              << theMeshName << "' )";
2341     }
2342   }
2343
2344   //dump "GetGroups"
2345   if(!myPreviewMode && mesh_i)
2346     mesh_i->GetGroups();
2347   
2348   return mesh._retn();
2349 }
2350
2351 //=======================================================================
2352 //function : MirrorObjectMakeMesh
2353 //purpose  : 
2354 //=======================================================================
2355
2356 SMESH::SMESH_Mesh_ptr
2357 SMESH_MeshEditor_i::MirrorObjectMakeMesh(SMESH::SMESH_IDSource_ptr           theObject,
2358                                          const SMESH::AxisStruct&            theMirror,
2359                                          SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
2360                                          CORBA::Boolean                      theCopyGroups,
2361                                          const char*                         theMeshName)
2362 {
2363   SMESH_Mesh_i* mesh_i;
2364   SMESH::SMESH_Mesh_var mesh;
2365   { // open new scope to dump "MakeMesh" command
2366     // and then "GetGroups" using SMESH_Mesh::GetGroups()
2367     
2368     TPythonDump pydump; // to prevent dump at mesh creation
2369
2370     mesh = makeMesh( theMeshName );
2371     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
2372     if ( mesh_i ) {
2373       SMESH::long_array_var anElementsId = theObject->GetIDs();
2374       mirror(anElementsId, theMirror, theMirrorType,
2375              false, theCopyGroups, & mesh_i->GetImpl());
2376       mesh_i->CreateGroupServants();
2377     }
2378
2379     if ( !myPreviewMode ) {
2380       pydump << mesh << " = " << this << ".MirrorObjectMakeMesh( "
2381              << theObject << ", "
2382              << theMirror   << ", "
2383              << mirrorTypeName(theMirrorType) << ", "
2384              << theCopyGroups << ", '"
2385              << theMeshName << "' )";
2386     }
2387   } 
2388
2389   //dump "GetGroups"
2390   if(!myPreviewMode && mesh_i)
2391     mesh_i->GetGroups();
2392   
2393   return mesh._retn();
2394 }
2395
2396 //=======================================================================
2397 //function : translate
2398 //purpose  : 
2399 //=======================================================================
2400
2401 SMESH::ListOfGroups*
2402 SMESH_MeshEditor_i::translate(const SMESH::long_array & theIDsOfElements,
2403                               const SMESH::DirStruct &  theVector,
2404                               CORBA::Boolean            theCopy,
2405                               const bool                theMakeGroups,
2406                               ::SMESH_Mesh*             theTargetMesh)
2407 {
2408   initData();
2409
2410   TIDSortedElemSet elements;
2411   arrayToSet(theIDsOfElements, GetMeshDS(), elements);
2412
2413   gp_Trsf aTrsf;
2414   const SMESH::PointStruct * P = &theVector.PS;
2415   aTrsf.SetTranslation( gp_Vec( P->x, P->y, P->z ));
2416
2417   ::SMESH_MeshEditor anEditor( myMesh );
2418   ::SMESH_MeshEditor::PGroupIDs groupIds =
2419       anEditor.Transform (elements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
2420
2421   if(theCopy)
2422     storeResult(anEditor);
2423
2424   return theMakeGroups ? getGroups(groupIds.get()) : 0;
2425 }
2426
2427 //=======================================================================
2428 //function : Translate
2429 //purpose  :
2430 //=======================================================================
2431
2432 void SMESH_MeshEditor_i::Translate(const SMESH::long_array & theIDsOfElements,
2433                                    const SMESH::DirStruct &  theVector,
2434                                    CORBA::Boolean            theCopy)
2435 {
2436   if ( !myPreviewMode ) {
2437     TPythonDump() << this << ".Translate( "
2438                   << theIDsOfElements << ", "
2439                   << theVector << ", "
2440                   << theCopy << " )";
2441   }
2442   translate(theIDsOfElements,
2443             theVector,
2444             theCopy,
2445             false);
2446 }
2447
2448 //=======================================================================
2449 //function : TranslateObject
2450 //purpose  :
2451 //=======================================================================
2452
2453 void SMESH_MeshEditor_i::TranslateObject(SMESH::SMESH_IDSource_ptr theObject,
2454                                          const SMESH::DirStruct &  theVector,
2455                                          CORBA::Boolean            theCopy)
2456 {
2457   if ( !myPreviewMode ) {
2458     TPythonDump() << this << ".TranslateObject( "
2459                   << theObject << ", "
2460                   << theVector << ", "
2461                   << theCopy << " )";
2462   }
2463   SMESH::long_array_var anElementsId = theObject->GetIDs();
2464   translate(anElementsId,
2465             theVector,
2466             theCopy,
2467             false);
2468 }
2469
2470 //=======================================================================
2471 //function : TranslateMakeGroups
2472 //purpose  : 
2473 //=======================================================================
2474
2475 SMESH::ListOfGroups*
2476 SMESH_MeshEditor_i::TranslateMakeGroups(const SMESH::long_array& theIDsOfElements,
2477                                         const SMESH::DirStruct&  theVector)
2478 {
2479   SMESH::ListOfGroups * aGroups = translate(theIDsOfElements,theVector,true,true);
2480   if ( !myPreviewMode ) {
2481     TPythonDump aPythonDump;
2482     DumpGroupsList(aPythonDump,aGroups);
2483     aPythonDump << this << ".TranslateMakeGroups( "
2484                 << theIDsOfElements << ", "
2485                 << theVector << " )";
2486   }
2487   return aGroups;
2488 }
2489
2490 //=======================================================================
2491 //function : TranslateObjectMakeGroups
2492 //purpose  : 
2493 //=======================================================================
2494
2495 SMESH::ListOfGroups*
2496 SMESH_MeshEditor_i::TranslateObjectMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
2497                                               const SMESH::DirStruct&   theVector)
2498 {
2499   SMESH::long_array_var anElementsId = theObject->GetIDs();
2500   SMESH::ListOfGroups * aGroups = translate(anElementsId, theVector, true, true);
2501   
2502   if ( !myPreviewMode ) {
2503
2504     TPythonDump aPythonDump;
2505     DumpGroupsList(aPythonDump,aGroups);
2506     aPythonDump << this << ".TranslateObjectMakeGroups( "
2507                 << theObject << ", "
2508                 << theVector << " )";
2509   }
2510   return aGroups;
2511 }
2512
2513 //=======================================================================
2514 //function : TranslateMakeMesh
2515 //purpose  : 
2516 //=======================================================================
2517
2518 SMESH::SMESH_Mesh_ptr
2519 SMESH_MeshEditor_i::TranslateMakeMesh(const SMESH::long_array& theIDsOfElements,
2520                                       const SMESH::DirStruct&  theVector,
2521                                       CORBA::Boolean           theCopyGroups,
2522                                       const char*              theMeshName)
2523 {
2524   SMESH_Mesh_i* mesh_i;
2525   SMESH::SMESH_Mesh_var mesh;
2526   
2527   { // open new scope to dump "MakeMesh" command
2528     // and then "GetGroups" using SMESH_Mesh::GetGroups()
2529
2530     TPythonDump pydump; // to prevent dump at mesh creation
2531     
2532     mesh = makeMesh( theMeshName );
2533     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
2534     
2535     if ( mesh_i ) {
2536       translate(theIDsOfElements, theVector,
2537                 false, theCopyGroups, & mesh_i->GetImpl());
2538       mesh_i->CreateGroupServants();
2539     }
2540     
2541     if ( !myPreviewMode ) {
2542       pydump << mesh << " = " << this << ".TranslateMakeMesh( "
2543              << theIDsOfElements << ", "
2544              << theVector   << ", "
2545              << theCopyGroups << ", '"
2546              << theMeshName << "' )";
2547     }
2548   }
2549   
2550   //dump "GetGroups"
2551   if(!myPreviewMode && mesh_i)
2552     mesh_i->GetGroups();
2553   
2554   return mesh._retn();
2555 }
2556
2557 //=======================================================================
2558 //function : TranslateObjectMakeMesh
2559 //purpose  : 
2560 //=======================================================================
2561
2562 SMESH::SMESH_Mesh_ptr
2563 SMESH_MeshEditor_i::TranslateObjectMakeMesh(SMESH::SMESH_IDSource_ptr theObject,
2564                                             const SMESH::DirStruct&   theVector,
2565                                             CORBA::Boolean            theCopyGroups,
2566                                             const char*               theMeshName)
2567 {
2568   SMESH_Mesh_i* mesh_i;
2569   SMESH::SMESH_Mesh_var mesh;
2570   { // open new scope to dump "MakeMesh" command
2571     // and then "GetGroups" using SMESH_Mesh::GetGroups()
2572     
2573     TPythonDump pydump; // to prevent dump at mesh creation
2574     mesh = makeMesh( theMeshName );
2575     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
2576     
2577     if ( mesh_i ) {
2578       SMESH::long_array_var anElementsId = theObject->GetIDs();
2579       translate(anElementsId, theVector,
2580                 false, theCopyGroups, & mesh_i->GetImpl());
2581       mesh_i->CreateGroupServants();
2582     }
2583     if ( !myPreviewMode ) {
2584       pydump << mesh << " = " << this << ".TranslateObjectMakeMesh( "
2585              << theObject << ", "
2586              << theVector   << ", "
2587              << theCopyGroups << ", '"
2588              << theMeshName << "' )";
2589     }
2590   }
2591   
2592   //dump "GetGroups"
2593   if(!myPreviewMode && mesh_i)
2594     mesh_i->GetGroups();
2595   
2596   return mesh._retn();
2597 }
2598
2599 //=======================================================================
2600 //function : rotate
2601 //purpose  : 
2602 //=======================================================================
2603
2604 SMESH::ListOfGroups*
2605 SMESH_MeshEditor_i::rotate(const SMESH::long_array & theIDsOfElements,
2606                            const SMESH::AxisStruct & theAxis,
2607                            CORBA::Double             theAngle,
2608                            CORBA::Boolean            theCopy,
2609                            const bool                theMakeGroups,
2610                            ::SMESH_Mesh*             theTargetMesh)
2611 {
2612   initData();
2613
2614   TIDSortedElemSet elements;
2615   arrayToSet(theIDsOfElements, GetMeshDS(), elements);
2616
2617   gp_Pnt P ( theAxis.x, theAxis.y, theAxis.z );
2618   gp_Vec V ( theAxis.vx, theAxis.vy, theAxis.vz );
2619
2620   gp_Trsf aTrsf;
2621   aTrsf.SetRotation( gp_Ax1( P, V ), theAngle);
2622
2623   ::SMESH_MeshEditor anEditor( myMesh );
2624   ::SMESH_MeshEditor::PGroupIDs groupIds =
2625       anEditor.Transform (elements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
2626
2627   if(theCopy) {
2628     storeResult(anEditor);
2629   }
2630   return theMakeGroups ? getGroups(groupIds.get()) : 0;
2631 }
2632
2633 //=======================================================================
2634 //function : Rotate
2635 //purpose  :
2636 //=======================================================================
2637
2638 void SMESH_MeshEditor_i::Rotate(const SMESH::long_array & theIDsOfElements,
2639                                 const SMESH::AxisStruct & theAxis,
2640                                 CORBA::Double             theAngle,
2641                                 CORBA::Boolean            theCopy)
2642 {
2643   if ( !myPreviewMode ) {
2644     TPythonDump() << this << ".Rotate( "
2645                   << theIDsOfElements << ", "
2646                   << theAxis << ", "
2647                   << theAngle << ", "
2648                   << theCopy << " )";
2649   }
2650   rotate(theIDsOfElements,
2651          theAxis,
2652          theAngle,
2653          theCopy,
2654          false);
2655 }
2656
2657 //=======================================================================
2658 //function : RotateObject
2659 //purpose  :
2660 //=======================================================================
2661
2662 void SMESH_MeshEditor_i::RotateObject(SMESH::SMESH_IDSource_ptr theObject,
2663                                       const SMESH::AxisStruct & theAxis,
2664                                       CORBA::Double             theAngle,
2665                                       CORBA::Boolean            theCopy)
2666 {
2667   if ( !myPreviewMode ) {
2668     TPythonDump() << this << ".RotateObject( "
2669                   << theObject << ", "
2670                   << theAxis << ", "
2671                   << theAngle << ", "
2672                   << theCopy << " )";
2673   }
2674   SMESH::long_array_var anElementsId = theObject->GetIDs();
2675   rotate(anElementsId,
2676          theAxis,
2677          theAngle,
2678          theCopy,
2679          false);
2680 }
2681
2682 //=======================================================================
2683 //function : RotateMakeGroups
2684 //purpose  : 
2685 //=======================================================================
2686
2687 SMESH::ListOfGroups*
2688 SMESH_MeshEditor_i::RotateMakeGroups(const SMESH::long_array& theIDsOfElements,
2689                                      const SMESH::AxisStruct& theAxis,
2690                                      CORBA::Double            theAngle)
2691 {
2692   SMESH::ListOfGroups * aGroups =  rotate(theIDsOfElements,theAxis,theAngle,true,true);
2693   if ( !myPreviewMode ) {
2694     TPythonDump aPythonDump;
2695     DumpGroupsList(aPythonDump,aGroups);
2696     aPythonDump << this << ".RotateMakeGroups( "
2697                 << theIDsOfElements << ", "
2698                 << theAxis << ", "
2699                 << theAngle << " )";
2700   }
2701   return aGroups;
2702 }
2703
2704 //=======================================================================
2705 //function : RotateObjectMakeGroups
2706 //purpose  : 
2707 //=======================================================================
2708
2709 SMESH::ListOfGroups*
2710 SMESH_MeshEditor_i::RotateObjectMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
2711                                            const SMESH::AxisStruct&  theAxis,
2712                                            CORBA::Double             theAngle)
2713 {
2714   SMESH::long_array_var anElementsId = theObject->GetIDs();
2715   SMESH::ListOfGroups * aGroups =  rotate(anElementsId,theAxis,theAngle,true,true);
2716  
2717   if ( !myPreviewMode ) {
2718     TPythonDump aPythonDump;
2719     DumpGroupsList(aPythonDump,aGroups);
2720     aPythonDump << this << ".RotateObjectMakeGroups( "
2721                 << theObject << ", "
2722                 << theAxis << ", "
2723                 << theAngle << " )";
2724   }
2725   return aGroups;
2726 }
2727
2728 //=======================================================================
2729 //function : RotateMakeMesh
2730 //purpose  : 
2731 //=======================================================================
2732
2733 SMESH::SMESH_Mesh_ptr 
2734 SMESH_MeshEditor_i::RotateMakeMesh(const SMESH::long_array& theIDsOfElements,
2735                                    const SMESH::AxisStruct& theAxis,
2736                                    CORBA::Double            theAngleInRadians,
2737                                    CORBA::Boolean           theCopyGroups,
2738                                    const char*              theMeshName)
2739 {
2740   SMESH::SMESH_Mesh_var mesh;
2741   SMESH_Mesh_i* mesh_i;
2742
2743   { // open new scope to dump "MakeMesh" command
2744     // and then "GetGroups" using SMESH_Mesh::GetGroups()
2745     
2746     TPythonDump pydump; // to prevent dump at mesh creation
2747
2748     mesh = makeMesh( theMeshName );
2749     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
2750     
2751     if ( mesh_i ) {
2752       rotate(theIDsOfElements, theAxis, theAngleInRadians,
2753              false, theCopyGroups, & mesh_i->GetImpl());
2754       mesh_i->CreateGroupServants();
2755     }
2756     if ( !myPreviewMode ) {
2757       pydump << mesh << " = " << this << ".RotateMakeMesh( "
2758              << theIDsOfElements << ", "
2759              << theAxis << ", "
2760              << theAngleInRadians   << ", "
2761              << theCopyGroups << ", '"
2762              << theMeshName << "' )";
2763     }
2764   }
2765   
2766   //dump "GetGroups"
2767   if(!myPreviewMode && mesh_i)
2768     mesh_i->GetGroups();
2769   
2770   return mesh._retn();
2771 }
2772
2773 //=======================================================================
2774 //function : RotateObjectMakeMesh
2775 //purpose  : 
2776 //=======================================================================
2777
2778 SMESH::SMESH_Mesh_ptr 
2779 SMESH_MeshEditor_i::RotateObjectMakeMesh(SMESH::SMESH_IDSource_ptr theObject,
2780                                          const SMESH::AxisStruct&  theAxis,
2781                                          CORBA::Double             theAngleInRadians,
2782                                          CORBA::Boolean            theCopyGroups,
2783                                          const char*               theMeshName)
2784 {
2785   SMESH::SMESH_Mesh_var mesh;
2786   SMESH_Mesh_i* mesh_i;
2787   
2788   {// open new scope to dump "MakeMesh" command
2789    // and then "GetGroups" using SMESH_Mesh::GetGroups()
2790     
2791     TPythonDump pydump; // to prevent dump at mesh creation
2792     mesh = makeMesh( theMeshName );
2793     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
2794     
2795     if (mesh_i ) {
2796       SMESH::long_array_var anElementsId = theObject->GetIDs();
2797       rotate(anElementsId, theAxis, theAngleInRadians,
2798              false, theCopyGroups, & mesh_i->GetImpl());
2799       mesh_i->CreateGroupServants();
2800     }
2801     if ( !myPreviewMode ) {
2802       pydump << mesh << " = " << this << ".RotateObjectMakeMesh( "
2803              << theObject << ", "
2804              << theAxis << ", "
2805              << theAngleInRadians   << ", "
2806              << theCopyGroups << ", '"
2807              << theMeshName << "' )";
2808     }
2809   }
2810   
2811   //dump "GetGroups"
2812   if(!myPreviewMode && mesh_i)
2813     mesh_i->GetGroups();
2814   
2815   return mesh._retn();
2816 }
2817
2818 //=======================================================================
2819 //function : FindCoincidentNodes
2820 //purpose  :
2821 //=======================================================================
2822
2823 void SMESH_MeshEditor_i::FindCoincidentNodes (CORBA::Double                  Tolerance,
2824                                               SMESH::array_of_long_array_out GroupsOfNodes)
2825 {
2826   initData();
2827
2828   ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes;
2829   ::SMESH_MeshEditor anEditor( myMesh );
2830   set<const SMDS_MeshNode*> nodes; // no input nodes
2831   anEditor.FindCoincidentNodes( nodes, Tolerance, aListOfListOfNodes );
2832
2833   GroupsOfNodes = new SMESH::array_of_long_array;
2834   GroupsOfNodes->length( aListOfListOfNodes.size() );
2835   ::SMESH_MeshEditor::TListOfListOfNodes::iterator llIt = aListOfListOfNodes.begin();
2836   for ( CORBA::Long i = 0; llIt != aListOfListOfNodes.end(); llIt++, i++ ) {
2837     list< const SMDS_MeshNode* >& aListOfNodes = *llIt;
2838     list< const SMDS_MeshNode* >::iterator lIt = aListOfNodes.begin();;
2839     SMESH::long_array& aGroup = (*GroupsOfNodes)[ i ];
2840     aGroup.length( aListOfNodes.size() );
2841     for ( int j = 0; lIt != aListOfNodes.end(); lIt++, j++ )
2842       aGroup[ j ] = (*lIt)->GetID();
2843   }
2844   TPythonDump() << "coincident_nodes = " << this << ".FindCoincidentNodes( "
2845                 << Tolerance << " )";
2846 }
2847
2848 //=======================================================================
2849 //function : FindCoincidentNodesOnPart
2850 //purpose  :
2851 //=======================================================================
2852 void SMESH_MeshEditor_i::FindCoincidentNodesOnPart(SMESH::SMESH_IDSource_ptr      theObject,
2853                                                    CORBA::Double                  Tolerance,
2854                                                    SMESH::array_of_long_array_out GroupsOfNodes)
2855 {
2856   initData();
2857   SMESH::long_array_var aElementsId = theObject->GetIDs();
2858
2859   SMESHDS_Mesh* aMesh = GetMeshDS();
2860   set<const SMDS_MeshNode*> nodes;
2861
2862   if ( !CORBA::is_nil(SMESH::SMESH_GroupBase::_narrow(theObject)) &&
2863       SMESH::SMESH_GroupBase::_narrow(theObject)->GetType() == SMESH::NODE) {
2864     for(int i = 0; i < aElementsId->length(); i++) {
2865       CORBA::Long ind = aElementsId[i];
2866       const SMDS_MeshNode * elem = aMesh->FindNode(ind);
2867       if(elem)
2868         nodes.insert(elem);
2869     }
2870   }
2871   else {
2872     for(int i = 0; i < aElementsId->length(); i++) {
2873       CORBA::Long ind = aElementsId[i];
2874       const SMDS_MeshElement * elem = aMesh->FindElement(ind);
2875       if(elem) {
2876         SMDS_ElemIteratorPtr nIt = elem->nodesIterator();
2877         while ( nIt->more() )
2878           nodes.insert( nodes.end(),static_cast<const SMDS_MeshNode*>(nIt->next()));
2879       }
2880     }
2881   }
2882     
2883   
2884   ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes;
2885   ::SMESH_MeshEditor anEditor( myMesh );
2886   if(!nodes.empty())
2887     anEditor.FindCoincidentNodes( nodes, Tolerance, aListOfListOfNodes );
2888   
2889   GroupsOfNodes = new SMESH::array_of_long_array;
2890   GroupsOfNodes->length( aListOfListOfNodes.size() );
2891   ::SMESH_MeshEditor::TListOfListOfNodes::iterator llIt = aListOfListOfNodes.begin();
2892   for ( CORBA::Long i = 0; llIt != aListOfListOfNodes.end(); llIt++, i++ ) {
2893     list< const SMDS_MeshNode* >& aListOfNodes = *llIt;
2894     list< const SMDS_MeshNode* >::iterator lIt = aListOfNodes.begin();;
2895     SMESH::long_array& aGroup = (*GroupsOfNodes)[ i ];
2896     aGroup.length( aListOfNodes.size() );
2897     for ( int j = 0; lIt != aListOfNodes.end(); lIt++, j++ )
2898       aGroup[ j ] = (*lIt)->GetID();
2899   }
2900   TPythonDump() << "coincident_nodes_on_part = " << this << ".FindCoincidentNodesOnPart( "
2901                 <<theObject<<", "
2902                 << Tolerance << " )";
2903 }
2904
2905 //=======================================================================
2906 //function : MergeNodes
2907 //purpose  :
2908 //=======================================================================
2909
2910 void SMESH_MeshEditor_i::MergeNodes (const SMESH::array_of_long_array& GroupsOfNodes)
2911 {
2912   initData();
2913
2914   SMESHDS_Mesh* aMesh = GetMeshDS();
2915
2916   TPythonDump aTPythonDump;
2917   aTPythonDump << this << ".MergeNodes([";
2918   ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes;
2919   for (int i = 0; i < GroupsOfNodes.length(); i++)
2920   {
2921     const SMESH::long_array& aNodeGroup = GroupsOfNodes[ i ];
2922     aListOfListOfNodes.push_back( list< const SMDS_MeshNode* >() );
2923     list< const SMDS_MeshNode* >& aListOfNodes = aListOfListOfNodes.back();
2924     for ( int j = 0; j < aNodeGroup.length(); j++ )
2925     {
2926       CORBA::Long index = aNodeGroup[ j ];
2927       const SMDS_MeshNode * node = aMesh->FindNode(index);
2928       if ( node )
2929         aListOfNodes.push_back( node );
2930     }
2931     if ( aListOfNodes.size() < 2 )
2932       aListOfListOfNodes.pop_back();
2933
2934     if ( i > 0 ) aTPythonDump << ", ";
2935     aTPythonDump << aNodeGroup;
2936   }
2937   ::SMESH_MeshEditor anEditor( myMesh );
2938   anEditor.MergeNodes( aListOfListOfNodes );
2939
2940   aTPythonDump <<  "])";
2941 }
2942
2943 //=======================================================================
2944 //function : FindEqualElements
2945 //purpose  :
2946 //=======================================================================
2947 void SMESH_MeshEditor_i::FindEqualElements(SMESH::SMESH_IDSource_ptr      theObject,
2948                                            SMESH::array_of_long_array_out GroupsOfElementsID)
2949 {
2950   initData();
2951   if ( !(!CORBA::is_nil(SMESH::SMESH_GroupBase::_narrow(theObject)) &&
2952          SMESH::SMESH_GroupBase::_narrow(theObject)->GetType() == SMESH::NODE) ) {
2953     typedef list<int> TListOfIDs;
2954     set<const SMDS_MeshElement*> elems;
2955     SMESH::long_array_var aElementsId = theObject->GetIDs();
2956     SMESHDS_Mesh* aMesh = GetMeshDS();
2957
2958     for(int i = 0; i < aElementsId->length(); i++) {
2959       CORBA::Long anID = aElementsId[i];
2960       const SMDS_MeshElement * elem = aMesh->FindElement(anID);
2961       if (elem) {
2962         elems.insert(elem);
2963       }
2964     }
2965
2966     ::SMESH_MeshEditor::TListOfListOfElementsID aListOfListOfElementsID;
2967     ::SMESH_MeshEditor anEditor( myMesh );
2968     anEditor.FindEqualElements( elems, aListOfListOfElementsID );
2969
2970     GroupsOfElementsID = new SMESH::array_of_long_array;
2971     GroupsOfElementsID->length( aListOfListOfElementsID.size() );
2972
2973     ::SMESH_MeshEditor::TListOfListOfElementsID::iterator arraysIt = aListOfListOfElementsID.begin();
2974     for (CORBA::Long j = 0; arraysIt != aListOfListOfElementsID.end(); ++arraysIt, ++j) {
2975       SMESH::long_array& aGroup = (*GroupsOfElementsID)[ j ];
2976       TListOfIDs& listOfIDs = *arraysIt;
2977       aGroup.length( listOfIDs.size() );
2978       TListOfIDs::iterator idIt = listOfIDs.begin();
2979       for (int k = 0; idIt != listOfIDs.end(); ++idIt, ++k ) {
2980         aGroup[ k ] = *idIt;
2981       }
2982     }
2983
2984   TPythonDump() << "equal_elements = " << this << ".FindEqualElements( "
2985                 <<theObject<<" )";
2986   }
2987 }
2988
2989 //=======================================================================
2990 //function : MergeElements
2991 //purpose  :
2992 //=======================================================================
2993
2994 void SMESH_MeshEditor_i::MergeElements(const SMESH::array_of_long_array& GroupsOfElementsID)
2995 {
2996   initData();
2997
2998   TPythonDump aTPythonDump;
2999   aTPythonDump << this << ".MergeElements( [";
3000
3001   ::SMESH_MeshEditor::TListOfListOfElementsID aListOfListOfElementsID;
3002
3003   for (int i = 0; i < GroupsOfElementsID.length(); i++) {
3004     const SMESH::long_array& anElemsIDGroup = GroupsOfElementsID[ i ];
3005     aListOfListOfElementsID.push_back( list< int >() );
3006     list< int >& aListOfElemsID = aListOfListOfElementsID.back();
3007     for ( int j = 0; j < anElemsIDGroup.length(); j++ ) {
3008       CORBA::Long id = anElemsIDGroup[ j ];
3009       aListOfElemsID.push_back( id );
3010     }
3011     if ( aListOfElemsID.size() < 2 )
3012       aListOfListOfElementsID.pop_back();
3013     if ( i > 0 ) aTPythonDump << ", ";
3014     aTPythonDump << anElemsIDGroup;
3015   }
3016
3017   ::SMESH_MeshEditor anEditor( myMesh );
3018   anEditor.MergeElements(aListOfListOfElementsID);
3019
3020   aTPythonDump << "] )";
3021 }
3022
3023 //=======================================================================
3024 //function : MergeEqualElements
3025 //purpose  :
3026 //=======================================================================
3027
3028 void SMESH_MeshEditor_i::MergeEqualElements()
3029 {
3030   initData();
3031
3032   ::SMESH_MeshEditor anEditor( myMesh );
3033   anEditor.MergeEqualElements();
3034
3035   TPythonDump() << this << ".MergeEqualElements()";
3036 }
3037
3038 //================================================================================
3039 /*!
3040  * \brief If the given ID is a valid node ID (nodeID > 0), just move this node, else
3041  * move the node closest to the point to point's location and return ID of the node
3042  */
3043 //================================================================================
3044
3045 CORBA::Long SMESH_MeshEditor_i::MoveClosestNodeToPoint(CORBA::Double x,
3046                                                        CORBA::Double y,
3047                                                        CORBA::Double z,
3048                                                        CORBA::Long   theNodeID)
3049 {
3050   // We keep myNodeSearcher until any mesh modification:
3051   // 1) initData() deletes myNodeSearcher at any edition,
3052   // 2) TNodeSearcherDeleter - at any mesh compute event and mesh change
3053
3054   initData();
3055
3056   int nodeID = theNodeID;
3057   const SMDS_MeshNode* node = GetMeshDS()->FindNode( nodeID );
3058   if ( !node )
3059   {
3060     static TNodeSearcherDeleter deleter;
3061     deleter.Set( myMesh );
3062     if ( !myNodeSearcher ) {
3063       ::SMESH_MeshEditor anEditor( myMesh );
3064       myNodeSearcher = anEditor.GetNodeSearcher();
3065     }
3066     gp_Pnt p( x,y,z );
3067     node = myNodeSearcher->FindClosestTo( p );
3068   }
3069   if ( node ) {
3070     nodeID = node->GetID();
3071     if ( myPreviewMode ) // make preview data
3072     {
3073       // in a preview mesh, make edges linked to a node
3074       TPreviewMesh tmpMesh;
3075       TIDSortedElemSet linkedNodes;
3076       ::SMESH_MeshEditor::GetLinkedNodes( node, linkedNodes );
3077       TIDSortedElemSet::iterator nIt = linkedNodes.begin();
3078       for ( ; nIt != linkedNodes.end(); ++nIt )
3079       {
3080         SMDS_MeshEdge edge( node, cast2Node( *nIt ));
3081         tmpMesh.Copy( &edge );
3082       }
3083       // move copied node
3084       node = tmpMesh.GetMeshDS()->FindNode( nodeID );
3085       if ( node )
3086         tmpMesh.GetMeshDS()->MoveNode(node, x, y, z);
3087       // fill preview data
3088       ::SMESH_MeshEditor anEditor( & tmpMesh );
3089       storeResult( anEditor );
3090     }
3091     else
3092     {
3093       GetMeshDS()->MoveNode(node, x, y, z);
3094     }
3095   }
3096
3097   if ( !myPreviewMode ) {
3098     TPythonDump() << "nodeID = " << this
3099                   << ".MoveClosestNodeToPoint( "<< x << ", " << y << ", " << z
3100                   << ", " << nodeID << " )";
3101   }
3102
3103   return nodeID;
3104 }
3105
3106 //=======================================================================
3107 //function : convError
3108 //purpose  :
3109 //=======================================================================
3110
3111 #define RETCASE(enm) case ::SMESH_MeshEditor::enm: return SMESH::SMESH_MeshEditor::enm;
3112
3113 static SMESH::SMESH_MeshEditor::Sew_Error convError( const::SMESH_MeshEditor::Sew_Error e )
3114 {
3115   switch ( e ) {
3116   RETCASE( SEW_OK );
3117   RETCASE( SEW_BORDER1_NOT_FOUND );
3118   RETCASE( SEW_BORDER2_NOT_FOUND );
3119   RETCASE( SEW_BOTH_BORDERS_NOT_FOUND );
3120   RETCASE( SEW_BAD_SIDE_NODES );
3121   RETCASE( SEW_VOLUMES_TO_SPLIT );
3122   RETCASE( SEW_DIFF_NB_OF_ELEMENTS );
3123   RETCASE( SEW_TOPO_DIFF_SETS_OF_ELEMENTS );
3124   RETCASE( SEW_BAD_SIDE1_NODES );
3125   RETCASE( SEW_BAD_SIDE2_NODES );
3126   }
3127   return SMESH::SMESH_MeshEditor::SEW_OK;
3128 }
3129
3130 //=======================================================================
3131 //function : SewFreeBorders
3132 //purpose  :
3133 //=======================================================================
3134
3135 SMESH::SMESH_MeshEditor::Sew_Error
3136   SMESH_MeshEditor_i::SewFreeBorders(CORBA::Long FirstNodeID1,
3137                                      CORBA::Long SecondNodeID1,
3138                                      CORBA::Long LastNodeID1,
3139                                      CORBA::Long FirstNodeID2,
3140                                      CORBA::Long SecondNodeID2,
3141                                      CORBA::Long LastNodeID2,
3142                                      CORBA::Boolean CreatePolygons,
3143                                      CORBA::Boolean CreatePolyedrs)
3144 {
3145   initData();
3146
3147   SMESHDS_Mesh* aMesh = GetMeshDS();
3148
3149   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeID1  );
3150   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeID1 );
3151   const SMDS_MeshNode* aBorderLastNode   = aMesh->FindNode( LastNodeID1   );
3152   const SMDS_MeshNode* aSide2FirstNode   = aMesh->FindNode( FirstNodeID2  );
3153   const SMDS_MeshNode* aSide2SecondNode  = aMesh->FindNode( SecondNodeID2 );
3154   const SMDS_MeshNode* aSide2ThirdNode   = aMesh->FindNode( LastNodeID2   );
3155
3156   if (!aBorderFirstNode ||
3157       !aBorderSecondNode||
3158       !aBorderLastNode)
3159     return SMESH::SMESH_MeshEditor::SEW_BORDER1_NOT_FOUND;
3160   if (!aSide2FirstNode  ||
3161       !aSide2SecondNode ||
3162       !aSide2ThirdNode)
3163     return SMESH::SMESH_MeshEditor::SEW_BORDER2_NOT_FOUND;
3164
3165   TPythonDump() << "error = " << this << ".SewFreeBorders( "
3166                 << FirstNodeID1  << ", "
3167                 << SecondNodeID1 << ", "
3168                 << LastNodeID1   << ", "
3169                 << FirstNodeID2  << ", "
3170                 << SecondNodeID2 << ", "
3171                 << LastNodeID2   << ", "
3172                 << CreatePolygons<< ", "
3173                 << CreatePolyedrs<< " )";
3174
3175   ::SMESH_MeshEditor anEditor( myMesh );
3176   SMESH::SMESH_MeshEditor::Sew_Error error =
3177     convError( anEditor.SewFreeBorder (aBorderFirstNode,
3178                                        aBorderSecondNode,
3179                                        aBorderLastNode,
3180                                        aSide2FirstNode,
3181                                        aSide2SecondNode,
3182                                        aSide2ThirdNode,
3183                                        true,
3184                                        CreatePolygons,
3185                                        CreatePolyedrs) );
3186
3187   storeResult(anEditor);
3188
3189   return error;
3190 }
3191
3192
3193 //=======================================================================
3194 //function : SewConformFreeBorders
3195 //purpose  :
3196 //=======================================================================
3197
3198 SMESH::SMESH_MeshEditor::Sew_Error
3199 SMESH_MeshEditor_i::SewConformFreeBorders(CORBA::Long FirstNodeID1,
3200                                           CORBA::Long SecondNodeID1,
3201                                           CORBA::Long LastNodeID1,
3202                                           CORBA::Long FirstNodeID2,
3203                                           CORBA::Long SecondNodeID2)
3204 {
3205   initData();
3206
3207   SMESHDS_Mesh* aMesh = GetMeshDS();
3208
3209   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeID1  );
3210   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeID1 );
3211   const SMDS_MeshNode* aBorderLastNode   = aMesh->FindNode( LastNodeID1   );
3212   const SMDS_MeshNode* aSide2FirstNode   = aMesh->FindNode( FirstNodeID2  );
3213   const SMDS_MeshNode* aSide2SecondNode  = aMesh->FindNode( SecondNodeID2 );
3214   const SMDS_MeshNode* aSide2ThirdNode   = 0;
3215
3216   if (!aBorderFirstNode ||
3217       !aBorderSecondNode||
3218       !aBorderLastNode )
3219     return SMESH::SMESH_MeshEditor::SEW_BORDER1_NOT_FOUND;
3220   if (!aSide2FirstNode  ||
3221       !aSide2SecondNode)
3222     return SMESH::SMESH_MeshEditor::SEW_BORDER2_NOT_FOUND;
3223
3224   TPythonDump() << "error = " << this << ".SewConformFreeBorders( "
3225                 << FirstNodeID1  << ", "
3226                 << SecondNodeID1 << ", "
3227                 << LastNodeID1   << ", "
3228                 << FirstNodeID2  << ", "
3229                 << SecondNodeID2 << " )";
3230
3231   ::SMESH_MeshEditor anEditor( myMesh );
3232   SMESH::SMESH_MeshEditor::Sew_Error error =
3233     convError( anEditor.SewFreeBorder (aBorderFirstNode,
3234                                        aBorderSecondNode,
3235                                        aBorderLastNode,
3236                                        aSide2FirstNode,
3237                                        aSide2SecondNode,
3238                                        aSide2ThirdNode,
3239                                        true,
3240                                        false, false) );
3241
3242   storeResult(anEditor);
3243
3244   return error;
3245 }
3246
3247
3248 //=======================================================================
3249 //function : SewBorderToSide
3250 //purpose  :
3251 //=======================================================================
3252
3253 SMESH::SMESH_MeshEditor::Sew_Error
3254 SMESH_MeshEditor_i::SewBorderToSide(CORBA::Long FirstNodeIDOnFreeBorder,
3255                                     CORBA::Long SecondNodeIDOnFreeBorder,
3256                                     CORBA::Long LastNodeIDOnFreeBorder,
3257                                     CORBA::Long FirstNodeIDOnSide,
3258                                     CORBA::Long LastNodeIDOnSide,
3259                                     CORBA::Boolean CreatePolygons,
3260                                     CORBA::Boolean CreatePolyedrs)
3261 {
3262   initData();
3263
3264   SMESHDS_Mesh* aMesh = GetMeshDS();
3265
3266   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeIDOnFreeBorder  );
3267   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeIDOnFreeBorder );
3268   const SMDS_MeshNode* aBorderLastNode   = aMesh->FindNode( LastNodeIDOnFreeBorder   );
3269   const SMDS_MeshNode* aSide2FirstNode   = aMesh->FindNode( FirstNodeIDOnSide  );
3270   const SMDS_MeshNode* aSide2SecondNode  = aMesh->FindNode( LastNodeIDOnSide );
3271   const SMDS_MeshNode* aSide2ThirdNode   = 0;
3272
3273   if (!aBorderFirstNode ||
3274       !aBorderSecondNode||
3275       !aBorderLastNode  )
3276     return SMESH::SMESH_MeshEditor::SEW_BORDER1_NOT_FOUND;
3277   if (!aSide2FirstNode  ||
3278       !aSide2SecondNode)
3279     return SMESH::SMESH_MeshEditor::SEW_BAD_SIDE_NODES;
3280
3281   TPythonDump() << "error = " << this << ".SewBorderToSide( "
3282                 << FirstNodeIDOnFreeBorder  << ", "
3283                 << SecondNodeIDOnFreeBorder << ", "
3284                 << LastNodeIDOnFreeBorder   << ", "
3285                 << FirstNodeIDOnSide        << ", "
3286                 << LastNodeIDOnSide         << ", "
3287                 << CreatePolygons           << ", "
3288                 << CreatePolyedrs           << ") ";
3289
3290   ::SMESH_MeshEditor anEditor( myMesh );
3291   SMESH::SMESH_MeshEditor::Sew_Error error =
3292     convError( anEditor.SewFreeBorder (aBorderFirstNode,
3293                                        aBorderSecondNode,
3294                                        aBorderLastNode,
3295                                        aSide2FirstNode,
3296                                        aSide2SecondNode,
3297                                        aSide2ThirdNode,
3298                                        false,
3299                                        CreatePolygons,
3300                                        CreatePolyedrs) );
3301
3302   storeResult(anEditor);
3303
3304   return error;
3305 }
3306
3307
3308 //=======================================================================
3309 //function : SewSideElements
3310 //purpose  :
3311 //=======================================================================
3312
3313 SMESH::SMESH_MeshEditor::Sew_Error
3314 SMESH_MeshEditor_i::SewSideElements(const SMESH::long_array& IDsOfSide1Elements,
3315                                     const SMESH::long_array& IDsOfSide2Elements,
3316                                     CORBA::Long NodeID1OfSide1ToMerge,
3317                                     CORBA::Long NodeID1OfSide2ToMerge,
3318                                     CORBA::Long NodeID2OfSide1ToMerge,
3319                                     CORBA::Long NodeID2OfSide2ToMerge)
3320 {
3321   initData();
3322
3323   SMESHDS_Mesh* aMesh = GetMeshDS();
3324
3325   const SMDS_MeshNode* aFirstNode1ToMerge  = aMesh->FindNode( NodeID1OfSide1ToMerge );
3326   const SMDS_MeshNode* aFirstNode2ToMerge  = aMesh->FindNode( NodeID1OfSide2ToMerge );
3327   const SMDS_MeshNode* aSecondNode1ToMerge = aMesh->FindNode( NodeID2OfSide1ToMerge );
3328   const SMDS_MeshNode* aSecondNode2ToMerge = aMesh->FindNode( NodeID2OfSide2ToMerge );
3329
3330   if (!aFirstNode1ToMerge ||
3331       !aFirstNode2ToMerge )
3332     return SMESH::SMESH_MeshEditor::SEW_BAD_SIDE1_NODES;
3333   if (!aSecondNode1ToMerge||
3334       !aSecondNode2ToMerge)
3335     return SMESH::SMESH_MeshEditor::SEW_BAD_SIDE2_NODES;
3336
3337   TIDSortedElemSet aSide1Elems, aSide2Elems;
3338   arrayToSet(IDsOfSide1Elements, aMesh, aSide1Elems);
3339   arrayToSet(IDsOfSide2Elements, aMesh, aSide2Elems);
3340
3341   TPythonDump() << "error = " << this << ".SewSideElements( "
3342                 << IDsOfSide1Elements << ", "
3343                 << IDsOfSide2Elements << ", "
3344                 << NodeID1OfSide1ToMerge << ", "
3345                 << NodeID1OfSide2ToMerge << ", "
3346                 << NodeID2OfSide1ToMerge << ", "
3347                 << NodeID2OfSide2ToMerge << ")";
3348
3349   ::SMESH_MeshEditor anEditor( myMesh );
3350   SMESH::SMESH_MeshEditor::Sew_Error error =
3351     convError( anEditor.SewSideElements (aSide1Elems, aSide2Elems,
3352                                          aFirstNode1ToMerge,
3353                                          aFirstNode2ToMerge,
3354                                          aSecondNode1ToMerge,
3355                                          aSecondNode2ToMerge));
3356
3357   storeResult(anEditor);
3358
3359   return error;
3360 }
3361
3362 //================================================================================
3363 /*!
3364  * \brief Set new nodes for given element
3365   * \param ide - element id
3366   * \param newIDs - new node ids
3367   * \retval CORBA::Boolean - true if result is OK
3368  */
3369 //================================================================================
3370
3371 CORBA::Boolean SMESH_MeshEditor_i::ChangeElemNodes(CORBA::Long ide,
3372                                                    const SMESH::long_array& newIDs)
3373 {
3374   initData();
3375
3376   const SMDS_MeshElement* elem = GetMeshDS()->FindElement(ide);
3377   if(!elem) return false;
3378
3379   int nbn = newIDs.length();
3380   int i=0;
3381   vector<const SMDS_MeshNode*> aNodes(nbn);
3382   int nbn1=-1;
3383   for(; i<nbn; i++) {
3384     const SMDS_MeshNode* aNode = GetMeshDS()->FindNode(newIDs[i]);
3385     if(aNode) {
3386       nbn1++;
3387       aNodes[nbn1] = aNode;
3388     }
3389   }
3390   TPythonDump() << "isDone = " << this << ".ChangeElemNodes( "
3391                 << ide << ", " << newIDs << " )";
3392 #ifdef _DEBUG_
3393   TPythonDump() << "print 'ChangeElemNodes: ', isDone";
3394 #endif
3395
3396   return GetMeshDS()->ChangeElementNodes( elem, & aNodes[0], nbn1+1 );
3397 }
3398   
3399 //================================================================================
3400 /*!
3401  * \brief Update myLastCreated* or myPreviewData
3402   * \param anEditor - it contains last modification results
3403  */
3404 //================================================================================
3405
3406 void SMESH_MeshEditor_i::storeResult(::SMESH_MeshEditor& anEditor)
3407 {
3408   if ( myPreviewMode ) { // --- MeshPreviewStruct filling --- 
3409
3410     list<int> aNodesConnectivity;
3411     typedef map<int, int> TNodesMap;
3412     TNodesMap nodesMap;
3413
3414     TPreviewMesh * aPreviewMesh = dynamic_cast< TPreviewMesh* >( anEditor.GetMesh() );
3415     SMDSAbs_ElementType previewType = aPreviewMesh->myPreviewType;
3416
3417     SMESHDS_Mesh* aMeshDS = anEditor.GetMeshDS();
3418     int nbEdges = aMeshDS->NbEdges();
3419     int nbFaces = aMeshDS->NbFaces();
3420     int nbVolum = aMeshDS->NbVolumes();
3421     switch ( previewType ) {
3422     case SMDSAbs_Edge  : nbFaces = nbVolum = 0; break;
3423     case SMDSAbs_Face  : nbEdges = nbVolum = 0; break;
3424     case SMDSAbs_Volume: nbEdges = nbFaces = 0; break;
3425     default:;
3426     }
3427     myPreviewData->nodesXYZ.length(aMeshDS->NbNodes());
3428     myPreviewData->elementTypes.length(nbEdges + nbFaces + nbVolum);
3429     int i = 0, j = 0;
3430     SMDS_ElemIteratorPtr itMeshElems = aMeshDS->elementsIterator();
3431
3432     while ( itMeshElems->more() ) {
3433       const SMDS_MeshElement* aMeshElem = itMeshElems->next();
3434       if ( previewType != SMDSAbs_All && aMeshElem->GetType() != previewType )
3435         continue;
3436
3437       SMDS_ElemIteratorPtr itElemNodes = aMeshElem->nodesIterator();
3438       while ( itElemNodes->more() ) {
3439         const SMDS_MeshNode* aMeshNode = 
3440           static_cast<const SMDS_MeshNode*>( itElemNodes->next() );
3441         int aNodeID = aMeshNode->GetID();
3442         TNodesMap::iterator anIter = nodesMap.find(aNodeID);
3443         if ( anIter == nodesMap.end() ) {
3444           // filling the nodes coordinates
3445           myPreviewData->nodesXYZ[j].x = aMeshNode->X();
3446           myPreviewData->nodesXYZ[j].y = aMeshNode->Y();
3447           myPreviewData->nodesXYZ[j].z = aMeshNode->Z();
3448           anIter = nodesMap.insert( make_pair(aNodeID, j) ).first;
3449           j++;
3450         }
3451         aNodesConnectivity.push_back(anIter->second);
3452       }
3453
3454       // filling the elements types
3455       SMDSAbs_ElementType aType;
3456       bool isPoly;
3457       /*if (aMeshElem->GetType() == SMDSAbs_Volume) {
3458         aType = SMDSAbs_Node;
3459         isPoly = false;
3460       }
3461       else*/ {
3462         aType = aMeshElem->GetType();
3463         isPoly = aMeshElem->IsPoly();
3464       }
3465
3466       myPreviewData->elementTypes[i].SMDS_ElementType = (SMESH::ElementType) aType;
3467       myPreviewData->elementTypes[i].isPoly = isPoly;
3468       myPreviewData->elementTypes[i].nbNodesInElement = aMeshElem->NbNodes();
3469       i++;
3470
3471     }
3472     myPreviewData->nodesXYZ.length( j );
3473
3474     // filling the elements connectivities
3475     list<int>::iterator aConnIter = aNodesConnectivity.begin();
3476     myPreviewData->elementConnectivities.length(aNodesConnectivity.size());
3477     for( int i = 0; aConnIter != aNodesConnectivity.end(); aConnIter++, i++ )
3478       myPreviewData->elementConnectivities[i] = *aConnIter;
3479     
3480     return;
3481   }
3482
3483   {
3484     // add new nodes into myLastCreatedNodes
3485     const SMESH_SequenceOfElemPtr& aSeq = anEditor.GetLastCreatedNodes();
3486     myLastCreatedNodes->length(aSeq.Length());
3487     for(int i=0; i<aSeq.Length(); i++)
3488       myLastCreatedNodes[i] = aSeq.Value(i+1)->GetID();
3489   }
3490   {
3491     // add new elements into myLastCreatedElems
3492     const SMESH_SequenceOfElemPtr& aSeq = anEditor.GetLastCreatedElems();
3493     myLastCreatedElems->length(aSeq.Length());
3494     for(int i=0; i<aSeq.Length(); i++)
3495       myLastCreatedElems[i] = aSeq.Value(i+1)->GetID();
3496   }
3497 }
3498
3499 //================================================================================
3500 /*!
3501  * Return data of mesh edition preview
3502  */
3503 //================================================================================
3504
3505 SMESH::MeshPreviewStruct* SMESH_MeshEditor_i::GetPreviewData()
3506 {
3507   return myPreviewData._retn();
3508 }
3509
3510 //================================================================================
3511 /*!
3512  * \brief Returns list of it's IDs of created nodes
3513   * \retval SMESH::long_array* - list of node ID
3514  */
3515 //================================================================================
3516
3517 SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedNodes()
3518 {
3519   return myLastCreatedNodes._retn();
3520 }
3521
3522 //================================================================================
3523 /*!
3524  * \brief Returns list of it's IDs of created elements
3525   * \retval SMESH::long_array* - list of elements' ID
3526  */
3527 //================================================================================
3528
3529 SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedElems()
3530 {
3531   return myLastCreatedElems._retn();
3532 }
3533
3534 //=======================================================================
3535 //function : ConvertToQuadratic
3536 //purpose  :
3537 //=======================================================================
3538
3539 void SMESH_MeshEditor_i::ConvertToQuadratic(CORBA::Boolean theForce3d)
3540 {
3541   ::SMESH_MeshEditor anEditor( myMesh );
3542   anEditor.ConvertToQuadratic(theForce3d);
3543   TPythonDump() << this << ".ConvertToQuadratic( " << theForce3d << " )";
3544 }
3545
3546 //=======================================================================
3547 //function : ConvertFromQuadratic
3548 //purpose  : 
3549 //=======================================================================
3550
3551 CORBA::Boolean SMESH_MeshEditor_i::ConvertFromQuadratic()
3552 {
3553   ::SMESH_MeshEditor anEditor( myMesh );
3554   CORBA::Boolean isDone = anEditor.ConvertFromQuadratic();
3555   TPythonDump() << this << ".ConvertFromQuadratic()";
3556   return isDone;
3557 }
3558
3559 //=======================================================================
3560 //function : makeMesh
3561 //purpose  : create a named imported mesh 
3562 //=======================================================================
3563
3564 SMESH::SMESH_Mesh_ptr SMESH_MeshEditor_i::makeMesh(const char* theMeshName)
3565 {
3566   SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen();
3567   SMESH::SMESH_Mesh_var mesh = gen->CreateEmptyMesh();
3568   SALOMEDS::Study_var study = gen->GetCurrentStudy();
3569   SALOMEDS::SObject_var meshSO = gen->ObjectToSObject( study, mesh );
3570   gen->SetName( meshSO, theMeshName, "Mesh" );
3571
3572   SALOMEDS::StudyBuilder_var builder = study->NewBuilder();
3573   SALOMEDS::GenericAttribute_var anAttr
3574     = builder->FindOrCreateAttribute( meshSO, "AttributePixMap" );
3575   SALOMEDS::AttributePixMap::_narrow( anAttr )->SetPixMap( "ICON_SMESH_TREE_MESH_IMPORTED" );
3576
3577   return mesh._retn();
3578 }
3579
3580 //=======================================================================
3581 //function : DumpGroupsList
3582 //purpose  : 
3583 //=======================================================================
3584 void SMESH_MeshEditor_i::DumpGroupsList(TPythonDump & theDumpPython, 
3585                                         const SMESH::ListOfGroups * theGroupList)
3586 {
3587   bool isDumpGroupList = theGroupList && theGroupList->length() > 0;
3588   if(isDumpGroupList) {
3589     theDumpPython << theGroupList << " = ";
3590   }
3591 }