Salome HOME
Debug 23078: [CEA 1498] Sewing of meshes without having to set the nodes ids
[modules/smesh.git] / src / SMESH_I / SMESH_MeshEditor_i.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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 //  File   : SMESH_MeshEditor_i.cxx
23 //  Author : Nicolas REJNERI
24 //  Module : SMESH
25
26 #ifdef WIN32
27 #define NOMINMAX
28 #endif
29
30 // A macro used in SMESH_TryCatch.hxx,
31 // it re-raises a CORBA SALOME exception thrown by SMESH_MeshEditor_i and caught by SMESH_CATCH
32 #define SMY_OWN_CATCH \
33   catch ( SALOME::SALOME_Exception & e ) { throw e; }
34
35 #include "SMESH_MeshEditor_i.hxx"
36
37 #include "SMDS_EdgePosition.hxx"
38 #include "SMDS_ElemIterator.hxx"
39 #include "SMDS_FacePosition.hxx"
40 #include "SMDS_IteratorOnIterators.hxx"
41 #include "SMDS_LinearEdge.hxx"
42 #include "SMDS_Mesh0DElement.hxx"
43 #include "SMDS_MeshFace.hxx"
44 #include "SMDS_MeshVolume.hxx"
45 #include "SMDS_PolyhedralVolumeOfNodes.hxx"
46 #include "SMDS_SetIterator.hxx"
47 #include "SMDS_VolumeTool.hxx"
48 #include "SMESHDS_Group.hxx"
49 #include "SMESHDS_GroupOnGeom.hxx"
50 #include "SMESH_ControlsDef.hxx"
51 #include "SMESH_Filter_i.hxx"
52 #include "SMESH_Gen_i.hxx"
53 #include "SMESH_Group.hxx"
54 #include "SMESH_Group_i.hxx"
55 #include "SMESH_MeshAlgos.hxx"
56 #include "SMESH_MeshPartDS.hxx"
57 #include "SMESH_MesherHelper.hxx"
58 #include "SMESH_PythonDump.hxx"
59 #include "SMESH_subMeshEventListener.hxx"
60 #include "SMESH_subMesh_i.hxx"
61
62 #include <utilities.h>
63 #include <Utils_ExceptHandlers.hxx>
64 #include <Utils_CorbaException.hxx>
65 #include <SALOMEDS_wrap.hxx>
66 #include <SALOME_GenericObj_i.hh>
67 #include <Basics_OCCTVersion.hxx>
68
69 #include <BRepAdaptor_Surface.hxx>
70 #include <BRep_Tool.hxx>
71 #include <TopExp_Explorer.hxx>
72 #include <TopoDS.hxx>
73 #include <TopoDS_Edge.hxx>
74 #include <TopoDS_Face.hxx>
75 #include <gp_Ax1.hxx>
76 #include <gp_Ax2.hxx>
77 #include <gp_Vec.hxx>
78
79 #if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
80 #define NO_CAS_CATCH
81 #endif
82
83 #include <Standard_Failure.hxx>
84
85 #ifdef NO_CAS_CATCH
86 #include <Standard_ErrorHandler.hxx>
87 #endif
88
89 #include <sstream>
90 #include <limits>
91
92 #include "SMESH_TryCatch.hxx" // include after OCCT headers!
93
94 #define cast2Node(elem) static_cast<const SMDS_MeshNode*>( elem )
95
96 using namespace std;
97 using SMESH::TPythonDump;
98 using SMESH::TVar;
99
100 namespace MeshEditor_I {
101
102   //=============================================================================
103   /*!
104    * \brief Mesh to apply modifications for preview purposes
105    */
106   //=============================================================================
107
108   struct TPreviewMesh: public SMESH_Mesh
109   {
110     SMDSAbs_ElementType myPreviewType; // type to show
111     //!< Constructor
112     TPreviewMesh(SMDSAbs_ElementType previewElements = SMDSAbs_All) {
113       _isShapeToMesh = (_id =_studyId = 0);
114       _myMeshDS  = new SMESHDS_Mesh( _id, true );
115       myPreviewType = previewElements;
116     }
117     //!< Copy a set of elements
118     void Copy(const TIDSortedElemSet & theElements,
119               TIDSortedElemSet&        theCopyElements,
120               SMDSAbs_ElementType      theSelectType = SMDSAbs_All,
121               SMDSAbs_ElementType      theAvoidType = SMDSAbs_All)
122     {
123       // loop on theIDsOfElements
124       TIDSortedElemSet::const_iterator eIt = theElements.begin();
125       for ( ; eIt != theElements.end(); ++eIt )
126       {
127         const SMDS_MeshElement* anElem = *eIt;
128         if ( !anElem ) continue;
129         SMDSAbs_ElementType type = anElem->GetType();
130         if ( type == theAvoidType ||
131              ( theSelectType != SMDSAbs_All && type != theSelectType ))
132           continue;
133         const SMDS_MeshElement* anElemCopy;
134         if ( type == SMDSAbs_Node)
135           anElemCopy = Copy( cast2Node(anElem) );
136         else
137           anElemCopy = Copy( anElem );
138         if ( anElemCopy )
139           theCopyElements.insert( theCopyElements.end(), anElemCopy );
140       }
141     }
142     //!< Copy an element
143     SMDS_MeshElement* Copy( const SMDS_MeshElement* anElem )
144     {
145       // copy element nodes
146       int anElemNbNodes = anElem->NbNodes();
147       vector< int > anElemNodesID( anElemNbNodes ) ;
148       SMDS_ElemIteratorPtr itElemNodes = anElem->nodesIterator();
149       for ( int i = 0; itElemNodes->more(); i++)
150       {
151         const SMDS_MeshNode* anElemNode = cast2Node( itElemNodes->next() );
152         Copy( anElemNode );
153         anElemNodesID[i] = anElemNode->GetID();
154       }
155
156       // creates a corresponding element on copied nodes
157       ::SMESH_MeshEditor::ElemFeatures elemType;
158       elemType.Init( anElem, /*basicOnly=*/false );
159       elemType.SetID( anElem->GetID() );
160       SMDS_MeshElement* anElemCopy =
161         ::SMESH_MeshEditor(this).AddElement( anElemNodesID, elemType );
162       return anElemCopy;
163     }
164     //!< Copy a node
165     SMDS_MeshNode* Copy( const SMDS_MeshNode* anElemNode )
166     {
167       return _myMeshDS->AddNodeWithID(anElemNode->X(), anElemNode->Y(), anElemNode->Z(),
168                                       anElemNode->GetID());
169     }
170     void RemoveAll()
171     {
172       GetMeshDS()->ClearMesh();
173     }
174     void Remove( SMDSAbs_ElementType type )
175     {
176       SMDS_ElemIteratorPtr eIt = GetMeshDS()->elementsIterator( type );
177       while ( eIt->more() )
178         GetMeshDS()->RemoveFreeElement( eIt->next(), /*sm=*/0, /*fromGroups=*/false );
179     }
180   };// struct TPreviewMesh
181
182   static SMESH_NodeSearcher *    theNodeSearcher    = 0;
183   static SMESH_ElementSearcher * theElementSearcher = 0;
184
185   //=============================================================================
186   /*!
187    * \brief Deleter of theNodeSearcher at any compute event occured
188    */
189   //=============================================================================
190
191   struct TSearchersDeleter : public SMESH_subMeshEventListener
192   {
193     SMESH_Mesh* myMesh;
194     string      myMeshPartIOR;
195     //!< Constructor
196     TSearchersDeleter(): SMESH_subMeshEventListener( false, // won't be deleted by submesh
197                                                      "SMESH_MeshEditor_i::TSearchersDeleter"),
198                          myMesh(0) {}
199     //!< Delete theNodeSearcher
200     static void Delete()
201     {
202       if ( theNodeSearcher )    delete theNodeSearcher;    theNodeSearcher    = 0;
203       if ( theElementSearcher ) delete theElementSearcher; theElementSearcher = 0;
204     }
205     typedef map < int, SMESH_subMesh * > TDependsOnMap;
206     //!< The meshod called by submesh: do my main job
207     void ProcessEvent(const int, const int eventType, SMESH_subMesh* sm,
208                       SMESH_subMeshEventListenerData*,const SMESH_Hypothesis*)
209     {
210       if ( eventType == SMESH_subMesh::COMPUTE_EVENT ) {
211         Delete();
212         Unset( sm->GetFather() );
213       }
214     }
215     //!< set self on all submeshes and delete theNodeSearcher if other mesh is set
216     void Set(SMESH_Mesh* mesh, const string& meshPartIOR = string())
217     {
218       if ( myMesh != mesh || myMeshPartIOR != meshPartIOR)
219       {
220         if ( myMesh ) {
221           Delete();
222           Unset( myMesh );
223         }
224         myMesh = mesh;
225         myMeshPartIOR = meshPartIOR;
226         SMESH_subMesh* sm = mesh->GetSubMesh( mesh->GetShapeToMesh() );
227         SMESH_subMeshIteratorPtr smIt = sm->getDependsOnIterator( /*includeSelf=*/true );
228         while ( smIt->more() )
229         {
230           sm = smIt->next();
231           sm->SetEventListener( this, 0, sm );
232         }
233       }
234     }
235     //!<  delete self from all submeshes
236     void Unset(SMESH_Mesh* mesh)
237     {
238       if ( SMESH_subMesh* sm = mesh->GetSubMeshContaining(1) ) {
239         SMESH_subMeshIteratorPtr smIt = sm->getDependsOnIterator( /*includeSelf=*/true );
240         while ( smIt->more() )
241           smIt->next()->DeleteEventListener( this );
242       }
243       myMesh = 0;
244     }
245
246   } theSearchersDeleter;
247
248   TCollection_AsciiString mirrorTypeName( SMESH::SMESH_MeshEditor::MirrorType theMirrorType )
249   {
250     TCollection_AsciiString typeStr;
251     switch ( theMirrorType ) {
252     case  SMESH::SMESH_MeshEditor::POINT:
253       typeStr = "SMESH.SMESH_MeshEditor.POINT";
254       break;
255     case  SMESH::SMESH_MeshEditor::AXIS:
256       typeStr = "SMESH.SMESH_MeshEditor.AXIS";
257       break;
258     default:
259       typeStr = "SMESH.SMESH_MeshEditor.PLANE";
260     }
261     return typeStr;
262   }
263   //================================================================================
264   /*!
265    * \brief function for conversion of long_array to TIDSortedElemSet
266    * \param IDs - array of IDs
267    * \param aMesh - mesh
268    * \param aMap - collection to fill
269    * \param aType - element type
270    */
271   //================================================================================
272
273   void arrayToSet(const SMESH::long_array & IDs,
274                   const SMESHDS_Mesh*       aMesh,
275                   TIDSortedElemSet&         aMap,
276                   const SMDSAbs_ElementType aType = SMDSAbs_All,
277                   SMDS_MeshElement::Filter* aFilter = NULL)
278   {
279     SMDS_MeshElement::NonNullFilter filter1;
280     SMDS_MeshElement::TypeFilter    filter2( aType );
281
282     if ( aFilter == NULL )
283       aFilter = ( aType == SMDSAbs_All ) ? (SMDS_MeshElement::Filter*) &filter1 : (SMDS_MeshElement::Filter*) &filter2;
284     
285     SMDS_MeshElement::Filter & filter = *aFilter;
286
287     if ( aType == SMDSAbs_Node )
288       for (int i=0; i<IDs.length(); i++) {
289         const SMDS_MeshElement * elem = aMesh->FindNode( IDs[i] );
290         if ( filter( elem ))
291           aMap.insert( aMap.end(), elem );
292       }
293     else
294       for (int i=0; i<IDs.length(); i++) {
295         const SMDS_MeshElement * elem = aMesh->FindElement( IDs[i] );
296         if ( filter( elem ))
297           aMap.insert( aMap.end(), elem );
298       }
299   }
300
301   //================================================================================
302   /*!
303    * \brief Retrieve nodes from SMESH_IDSource
304    */
305   //================================================================================
306
307   void idSourceToNodeSet(SMESH::SMESH_IDSource_ptr  theObject,
308                          const SMESHDS_Mesh*        theMeshDS,
309                          TIDSortedNodeSet&          theNodeSet)
310
311   {
312     if ( CORBA::is_nil( theObject ) )
313       return;
314     SMESH::array_of_ElementType_var types = theObject->GetTypes();
315     SMESH::long_array_var     aElementsId = theObject->GetIDs();
316     if ( types->length() == 1 && types[0] == SMESH::NODE)
317     {
318       for(int i = 0; i < aElementsId->length(); i++)
319         if ( const SMDS_MeshNode * n = theMeshDS->FindNode( aElementsId[i] ))
320           theNodeSet.insert( theNodeSet.end(), n);
321     }
322     else if ( SMESH::DownCast<SMESH_Mesh_i*>( theObject ))
323     {
324       SMDS_NodeIteratorPtr nIt = theMeshDS->nodesIterator();
325       while ( nIt->more( ))
326         if( const SMDS_MeshElement * elem = nIt->next() )
327           theNodeSet.insert( elem->begin_nodes(), elem->end_nodes());
328     }
329     else
330     {
331       for(int i = 0; i < aElementsId->length(); i++)
332         if( const SMDS_MeshElement * elem = theMeshDS->FindElement( aElementsId[i] ))
333           theNodeSet.insert( elem->begin_nodes(), elem->end_nodes());
334     }
335   }
336
337   //================================================================================
338   /*!
339    * \brief Returns elements connected to the given elements
340    */
341   //================================================================================
342
343   void getElementsAround(const TIDSortedElemSet& theElements,
344                          const SMESHDS_Mesh*     theMeshDS,
345                          TIDSortedElemSet&       theElementsAround)
346   {
347     if ( theElements.empty() ) return;
348
349     SMDSAbs_ElementType elemType    = (*theElements.begin())->GetType();
350     bool sameElemType = ( elemType == (*theElements.rbegin())->GetType() );
351     if ( sameElemType &&
352          theMeshDS->GetMeshInfo().NbElements( elemType ) == theElements.size() )
353       return; // all the elements are in theElements
354
355     if ( !sameElemType )
356       elemType = SMDSAbs_All;
357
358     vector<bool> isNodeChecked( theMeshDS->NbNodes(), false );
359
360     TIDSortedElemSet::const_iterator elemIt = theElements.begin();
361     for ( ; elemIt != theElements.end(); ++elemIt )
362     {
363       const SMDS_MeshElement* e = *elemIt;
364       int i = e->NbCornerNodes();
365       while ( --i != -1 )
366       {
367         const SMDS_MeshNode* n = e->GetNode( i );
368         if ( !isNodeChecked[ n->GetID() ])
369         {
370           isNodeChecked[ n->GetID() ] = true;
371           SMDS_ElemIteratorPtr invIt = n->GetInverseElementIterator(elemType);
372           while ( invIt->more() )
373           {
374             const SMDS_MeshElement* elemAround = invIt->next();
375             if ( !theElements.count( elemAround ))
376               theElementsAround.insert( elemAround );
377           }
378         }
379       }
380     }
381   }
382
383   //================================================================================
384   /*!
385    * \brief Return a string used to detect change of mesh part on which theElementSearcher
386    * is going to be used
387    */
388   //================================================================================
389
390   string getPartIOR( SMESH::SMESH_IDSource_ptr theMeshPart, SMESH::ElementType type)
391   {
392     string partIOR = SMESH_Gen_i::GetORB()->object_to_string( theMeshPart );
393     if ( SMESH_Group_i* group_i = SMESH::DownCast<SMESH_Group_i*>( theMeshPart ))
394       // take into account passible group modification
395       partIOR += SMESH_Comment( ((SMESHDS_Group*)group_i->GetGroupDS())->SMDSGroup().Tic() );
396     partIOR += SMESH_Comment( type );
397     return partIOR;
398   }
399
400 } // namespace MeshEditor_I
401
402 using namespace MeshEditor_I;
403
404 //=============================================================================
405 /*!
406  *
407  */
408 //=============================================================================
409
410 SMESH_MeshEditor_i::SMESH_MeshEditor_i(SMESH_Mesh_i* theMesh, bool isPreview):
411   myMesh_i( theMesh ),
412   myMesh( &theMesh->GetImpl() ),
413   myEditor( myMesh ),
414   myIsPreviewMode ( isPreview ),
415   myPreviewMesh( 0 ),
416   myPreviewEditor( 0 )
417 {
418 }
419
420 //================================================================================
421 /*!
422  * \brief Destructor
423  */
424 //================================================================================
425
426 SMESH_MeshEditor_i::~SMESH_MeshEditor_i()
427 {
428   PortableServer::POA_var poa = SMESH_Gen_i::GetPOA();
429   PortableServer::ObjectId_var anObjectId = poa->servant_to_id(this);
430   poa->deactivate_object(anObjectId.in());
431
432   //deleteAuxIDSources();
433   delete myPreviewMesh;   myPreviewMesh = 0;
434   delete myPreviewEditor; myPreviewEditor = 0;
435 }
436
437 //================================================================================
438 /*!
439  * \brief Returns the mesh
440  */
441 //================================================================================
442
443 SMESH::SMESH_Mesh_ptr SMESH_MeshEditor_i::GetMesh()
444 {
445   return myMesh_i->_this();
446 }
447
448 //================================================================================
449 /*!
450  * \brief Clear members
451  */
452 //================================================================================
453
454 void SMESH_MeshEditor_i::initData(bool deleteSearchers)
455 {
456   if ( myIsPreviewMode ) {
457     if ( myPreviewMesh ) myPreviewMesh->RemoveAll();
458   }
459   else {
460     if ( deleteSearchers )
461       TSearchersDeleter::Delete();
462   }
463   getEditor().GetError().reset();
464   getEditor().ClearLastCreated();
465 }
466
467 //================================================================================
468 /*!
469  * \brief Increment mesh modif time and optionally record that the performed
470  *        modification may influence futher mesh re-compute.
471  *  \param [in] isReComputeSafe - true if the modification does not influence
472  *              futher mesh re-compute
473  */
474 //================================================================================
475
476 void SMESH_MeshEditor_i::declareMeshModified( bool isReComputeSafe )
477 {
478   myMesh->GetMeshDS()->Modified();
479   if ( !isReComputeSafe )
480     myMesh->SetIsModified( true );
481 }
482
483 //================================================================================
484 /*!
485  * \brief Return either myEditor or myPreviewEditor depending on myIsPreviewMode.
486  *        WARNING: in preview mode call getPreviewMesh() before getEditor()!
487  */
488 //================================================================================
489
490 ::SMESH_MeshEditor& SMESH_MeshEditor_i::getEditor()
491 {
492   if ( myIsPreviewMode && !myPreviewEditor ) {
493     if ( !myPreviewMesh ) getPreviewMesh();
494     myPreviewEditor = new ::SMESH_MeshEditor( myPreviewMesh );
495   }
496   return myIsPreviewMode ? *myPreviewEditor : myEditor;
497 }
498
499 //================================================================================
500 /*!
501  * \brief Initialize and return myPreviewMesh
502  *  \param previewElements - type of elements to show in preview
503  *
504  *  WARNING: call it once par a method!
505  */
506 //================================================================================
507
508 TPreviewMesh * SMESH_MeshEditor_i::getPreviewMesh(SMDSAbs_ElementType previewElements)
509 {
510   if ( !myPreviewMesh || myPreviewMesh->myPreviewType != previewElements )
511   {
512     delete myPreviewEditor;
513     myPreviewEditor = 0;
514     delete myPreviewMesh;
515     myPreviewMesh = new TPreviewMesh( previewElements );
516   }
517   myPreviewMesh->Clear();
518   return myPreviewMesh;
519 }
520
521 //================================================================================
522 /*!
523  * Return data of mesh edition preview
524  */
525 //================================================================================
526
527 SMESH::MeshPreviewStruct* SMESH_MeshEditor_i::GetPreviewData()
528   throw (SALOME::SALOME_Exception)
529 {
530   SMESH_TRY;
531   const bool hasBadElems = ( getEditor().GetError() && getEditor().GetError()->HasBadElems() );
532
533   if ( myIsPreviewMode || hasBadElems ) { // --- MeshPreviewStruct filling ---
534
535     list<int> aNodesConnectivity;
536     typedef map<int, int> TNodesMap;
537     TNodesMap nodesMap;
538
539     SMESHDS_Mesh* aMeshDS;
540     std::auto_ptr< SMESH_MeshPartDS > aMeshPartDS;
541     if ( hasBadElems ) {
542       aMeshPartDS.reset( new SMESH_MeshPartDS( getEditor().GetError()->myBadElements ));
543       aMeshDS = aMeshPartDS.get();
544     }
545     else {
546       aMeshDS = getEditor().GetMeshDS();
547     }
548     myPreviewData = new SMESH::MeshPreviewStruct();
549     myPreviewData->nodesXYZ.length(aMeshDS->NbNodes());
550
551
552     SMDSAbs_ElementType previewType = SMDSAbs_All;
553     if ( !hasBadElems )
554       if (TPreviewMesh * aPreviewMesh = dynamic_cast< TPreviewMesh* >( getEditor().GetMesh() )) {
555         previewType = aPreviewMesh->myPreviewType;
556         switch ( previewType ) {
557         case SMDSAbs_Edge  : break;
558         case SMDSAbs_Face  : break;
559         case SMDSAbs_Volume: break;
560         default:;
561           if ( aMeshDS->GetMeshInfo().NbElements() == 0 ) previewType = SMDSAbs_Node;
562         }
563       }
564
565     myPreviewData->elementTypes.length( aMeshDS->GetMeshInfo().NbElements( previewType ));
566     int i = 0, j = 0;
567     SMDS_ElemIteratorPtr itMeshElems = aMeshDS->elementsIterator(previewType);
568
569     while ( itMeshElems->more() ) {
570       const SMDS_MeshElement* aMeshElem = itMeshElems->next();
571       SMDS_NodeIteratorPtr itElemNodes = 
572         (( aMeshElem->GetEntityType() == SMDSEntity_Quad_Polygon ) ?
573          aMeshElem->interlacedNodesIterator() :
574          aMeshElem->nodeIterator() );
575       while ( itElemNodes->more() ) {
576         const SMDS_MeshNode* aMeshNode = itElemNodes->next();
577         int aNodeID = aMeshNode->GetID();
578         TNodesMap::iterator anIter = nodesMap.find(aNodeID);
579         if ( anIter == nodesMap.end() ) {
580           // filling the nodes coordinates
581           myPreviewData->nodesXYZ[j].x = aMeshNode->X();
582           myPreviewData->nodesXYZ[j].y = aMeshNode->Y();
583           myPreviewData->nodesXYZ[j].z = aMeshNode->Z();
584           anIter = nodesMap.insert( make_pair(aNodeID, j) ).first;
585           j++;
586         }
587         aNodesConnectivity.push_back(anIter->second);
588       }
589
590       // filling the elements types
591       SMDSAbs_ElementType aType = aMeshElem->GetType();
592       bool               isPoly = aMeshElem->IsPoly();
593       myPreviewData->elementTypes[i].SMDS_ElementType = (SMESH::ElementType) aType;
594       myPreviewData->elementTypes[i].isPoly           = isPoly;
595       myPreviewData->elementTypes[i].nbNodesInElement = aMeshElem->NbNodes();
596       i++;
597     }
598     myPreviewData->nodesXYZ.length( j );
599
600     // filling the elements connectivities
601     list<int>::iterator aConnIter = aNodesConnectivity.begin();
602     myPreviewData->elementConnectivities.length(aNodesConnectivity.size());
603     for( int i = 0; aConnIter != aNodesConnectivity.end(); aConnIter++, i++ )
604       myPreviewData->elementConnectivities[i] = *aConnIter;
605   }
606   return myPreviewData._retn();
607
608   SMESH_CATCH( SMESH::throwCorbaException );
609   return 0;
610 }
611
612 //================================================================================
613 /*!
614  * \brief Returns list of it's IDs of created nodes
615  * \retval SMESH::long_array* - list of node ID
616  */
617 //================================================================================
618
619 SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedNodes()
620   throw (SALOME::SALOME_Exception)
621 {
622   SMESH_TRY;
623   SMESH::long_array_var myLastCreatedNodes = new SMESH::long_array();
624
625   const SMESH_SequenceOfElemPtr& aSeq = getEditor().GetLastCreatedNodes();
626   myLastCreatedNodes->length( aSeq.Length() );
627   for (int i = 1; i <= aSeq.Length(); i++)
628     myLastCreatedNodes[i-1] = aSeq.Value(i)->GetID();
629
630   return myLastCreatedNodes._retn();
631   SMESH_CATCH( SMESH::throwCorbaException );
632   return 0;
633 }
634
635 //================================================================================
636 /*!
637  * \brief Returns list of it's IDs of created elements
638  * \retval SMESH::long_array* - list of elements' ID
639  */
640 //================================================================================
641
642 SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedElems()
643   throw (SALOME::SALOME_Exception)
644 {
645   SMESH_TRY;
646   SMESH::long_array_var myLastCreatedElems = new SMESH::long_array();
647
648   const SMESH_SequenceOfElemPtr& aSeq = getEditor().GetLastCreatedElems();
649   myLastCreatedElems->length( aSeq.Length() );
650   for ( int i = 1; i <= aSeq.Length(); i++ )
651     myLastCreatedElems[i-1] = aSeq.Value(i)->GetID();
652
653   return myLastCreatedElems._retn();
654   SMESH_CATCH( SMESH::throwCorbaException );
655   return 0;
656 }
657
658 //=======================================================================
659 //function : ClearLastCreated
660 //purpose  : Clears sequences of last created elements and nodes 
661 //=======================================================================
662
663 void SMESH_MeshEditor_i::ClearLastCreated() throw (SALOME::SALOME_Exception)
664 {
665   SMESH_TRY;
666   getEditor().ClearLastCreated();
667   SMESH_CATCH( SMESH::throwCorbaException );
668 }
669
670 //=======================================================================
671 /*
672  * Returns description of an error/warning occured during the last operation
673  * WARNING: ComputeError.code >= 100 and no corresponding enum in IDL API
674  */
675 //=======================================================================
676
677 SMESH::ComputeError* SMESH_MeshEditor_i::GetLastError()
678   throw (SALOME::SALOME_Exception)
679 {
680   SMESH_TRY;
681   SMESH::ComputeError_var errOut = new SMESH::ComputeError;
682   SMESH_ComputeErrorPtr&  errIn  = getEditor().GetError();
683   if ( errIn && !errIn->IsOK() )
684   {
685     errOut->code       = -( errIn->myName < 0 ? errIn->myName + 1: errIn->myName ); // -1 -> 0
686     errOut->comment    = errIn->myComment.c_str();
687     errOut->subShapeID = -1;
688     errOut->hasBadMesh = !errIn->myBadElements.empty();
689   }
690   else
691   {
692     errOut->code       = 0;
693     errOut->subShapeID = -1;
694     errOut->hasBadMesh = false;
695   }
696
697   return errOut._retn();
698   SMESH_CATCH( SMESH::throwCorbaException );
699   return 0;
700 }
701
702 //=======================================================================
703 //function : MakeIDSource
704 //purpose  : Wrap a sequence of ids in a SMESH_IDSource.
705 //           Call UnRegister() as you fininsh using it!!
706 //=======================================================================
707
708 struct SMESH_MeshEditor_i::_IDSource : public virtual POA_SMESH::SMESH_IDSource,
709                                        public virtual SALOME::GenericObj_i
710 {
711   SMESH::long_array     _ids;
712   SMESH::ElementType    _type;
713   SMESH::SMESH_Mesh_ptr _mesh;
714   SMESH::long_array* GetIDs()      { return new SMESH::long_array( _ids ); }
715   SMESH::long_array* GetMeshInfo() { return 0; }
716   SMESH::long_array* GetNbElementsByType()
717   {
718     SMESH::long_array_var aRes = new SMESH::long_array();
719     aRes->length(SMESH::NB_ELEMENT_TYPES);
720     for (int i = 0; i < SMESH::NB_ELEMENT_TYPES; i++)
721       aRes[ i ] = ( i == _type ) ? _ids.length() : 0;
722     return aRes._retn();  
723   }
724   SMESH::SMESH_Mesh_ptr GetMesh()  { return SMESH::SMESH_Mesh::_duplicate( _mesh ); }
725   bool IsMeshInfoCorrect()         { return true; }
726   SMESH::array_of_ElementType* GetTypes()
727   {
728     SMESH::array_of_ElementType_var types = new SMESH::array_of_ElementType;
729     if ( _ids.length() > 0 ) {
730       types->length( 1 );
731       types[0] = _type;
732     }
733     return types._retn();
734   }
735   SALOMEDS::TMPFile* GetVtkUgStream()
736   {
737     SALOMEDS::TMPFile_var SeqFile;
738     return SeqFile._retn();
739   }
740 };
741
742 SMESH::SMESH_IDSource_ptr SMESH_MeshEditor_i::MakeIDSource(const SMESH::long_array& ids,
743                                                            SMESH::ElementType       type)
744 {
745   _IDSource* idSrc = new _IDSource;
746   idSrc->_mesh = myMesh_i->_this();
747   idSrc->_ids  = ids;
748   idSrc->_type = type;
749   if ( type == SMESH::ALL && ids.length() > 0 )
750     idSrc->_type = myMesh_i->GetElementType( ids[0], true );
751
752   SMESH::SMESH_IDSource_var anIDSourceVar = idSrc->_this();
753
754   return anIDSourceVar._retn();
755 }
756
757 bool SMESH_MeshEditor_i::IsTemporaryIDSource( SMESH::SMESH_IDSource_ptr& idSource )
758 {
759   return SMESH::DownCast<SMESH_MeshEditor_i::_IDSource*>( idSource );
760 }
761
762 CORBA::Long* SMESH_MeshEditor_i::GetTemporaryIDs( SMESH::SMESH_IDSource_ptr& idSource,
763                                                   int&                       nbIds)
764 {
765   if ( _IDSource* tmpIdSource = SMESH::DownCast<SMESH_MeshEditor_i::_IDSource*>( idSource ))
766   {
767     nbIds = (int) tmpIdSource->_ids.length();
768     return & tmpIdSource->_ids[0];
769   }
770   nbIds = 0;
771   return 0;
772 }
773
774 // void SMESH_MeshEditor_i::deleteAuxIDSources()
775 // {
776 //   std::list< _IDSource* >::iterator idSrcIt = myAuxIDSources.begin();
777 //   for ( ; idSrcIt != myAuxIDSources.end(); ++idSrcIt )
778 //     delete *idSrcIt;
779 //   myAuxIDSources.clear();
780 // }
781
782 //=============================================================================
783 /*!
784  *
785  */
786 //=============================================================================
787
788 CORBA::Boolean
789 SMESH_MeshEditor_i::RemoveElements(const SMESH::long_array & IDsOfElements)
790   throw (SALOME::SALOME_Exception)
791 {
792   SMESH_TRY;
793   initData();
794
795   list< int > IdList;
796
797   for (int i = 0; i < IDsOfElements.length(); i++)
798     IdList.push_back( IDsOfElements[i] );
799
800   // Update Python script
801   TPythonDump() << "isDone = " << this << ".RemoveElements( " << IDsOfElements << " )";
802
803   // Remove Elements
804   bool ret = getEditor().Remove( IdList, false );
805
806   declareMeshModified( /*isReComputeSafe=*/ IDsOfElements.length() == 0 ); // issue 0020693
807   return ret;
808
809   SMESH_CATCH( SMESH::throwCorbaException );
810   return 0;
811 }
812
813 //=============================================================================
814 /*!
815  *
816  */
817 //=============================================================================
818
819 CORBA::Boolean SMESH_MeshEditor_i::RemoveNodes(const SMESH::long_array & IDsOfNodes)
820   throw (SALOME::SALOME_Exception)
821 {
822   SMESH_TRY;
823   initData();
824
825   list< int > IdList;
826   for (int i = 0; i < IDsOfNodes.length(); i++)
827     IdList.push_back( IDsOfNodes[i] );
828
829   // Update Python script
830   TPythonDump() << "isDone = " << this << ".RemoveNodes( " << IDsOfNodes << " )";
831
832   bool ret = getEditor().Remove( IdList, true );
833
834   declareMeshModified( /*isReComputeSafe=*/ !ret ); // issue 0020693
835   return ret;
836
837   SMESH_CATCH( SMESH::throwCorbaException );
838   return 0;
839 }
840
841 //=============================================================================
842 /*!
843  *
844  */
845 //=============================================================================
846
847 CORBA::Long SMESH_MeshEditor_i::RemoveOrphanNodes()
848   throw (SALOME::SALOME_Exception)
849 {
850   SMESH_TRY;
851   initData();
852
853   // Update Python script
854   TPythonDump() << "nbRemoved = " << this << ".RemoveOrphanNodes()";
855
856   // Create filter to find all orphan nodes
857   SMESH::Controls::Filter::TIdSequence seq;
858   SMESH::Controls::PredicatePtr predicate( new SMESH::Controls::FreeNodes() );
859   SMESH::Controls::Filter::GetElementsId( getMeshDS(), predicate, seq );
860
861   // remove orphan nodes (if there are any)
862   list< int > IdList;
863   for ( int i = 0; i < seq.size(); i++ )
864     IdList.push_back( seq[i] );
865
866   int nbNodesBefore = myMesh->NbNodes();
867   getEditor().Remove( IdList, true );
868   int nbNodesAfter = myMesh->NbNodes();
869
870   declareMeshModified( /*isReComputeSafe=*/ IdList.size() == 0 ); // issue 0020693
871   return nbNodesBefore - nbNodesAfter;
872
873   SMESH_CATCH( SMESH::throwCorbaException );
874   return 0;
875 }
876
877 //=============================================================================
878 /*!
879  * Add a new node.
880  */
881 //=============================================================================
882
883 CORBA::Long SMESH_MeshEditor_i::AddNode(CORBA::Double x,CORBA::Double y, CORBA::Double z)
884   throw (SALOME::SALOME_Exception)
885 {
886   SMESH_TRY;
887   initData();
888
889   const SMDS_MeshNode* N = getMeshDS()->AddNode(x, y, z);
890
891   // Update Python script
892   TPythonDump() << "nodeID = " << this << ".AddNode( "
893                 << TVar( x ) << ", " << TVar( y ) << ", " << TVar( z )<< " )";
894
895   declareMeshModified( /*isReComputeSafe=*/false );
896   return N->GetID();
897
898   SMESH_CATCH( SMESH::throwCorbaException );
899   return 0;
900 }
901
902 //=============================================================================
903 /*!
904  * Create 0D element on the given node.
905  */
906 //=============================================================================
907
908 CORBA::Long SMESH_MeshEditor_i::Add0DElement(CORBA::Long IDOfNode)
909   throw (SALOME::SALOME_Exception)
910 {
911   SMESH_TRY;
912   initData();
913
914   const SMDS_MeshNode* aNode = getMeshDS()->FindNode(IDOfNode);
915   SMDS_MeshElement* elem = getMeshDS()->Add0DElement(aNode);
916
917   // Update Python script
918   TPythonDump() << "elem0d = " << this << ".Add0DElement( " << IDOfNode <<" )";
919
920   declareMeshModified( /*isReComputeSafe=*/false );
921
922   return elem ? elem->GetID() : 0;
923
924   SMESH_CATCH( SMESH::throwCorbaException );
925   return 0;
926 }
927
928 //=============================================================================
929 /*!
930  * Create a ball element on the given node.
931  */
932 //=============================================================================
933
934 CORBA::Long SMESH_MeshEditor_i::AddBall(CORBA::Long IDOfNode, CORBA::Double diameter)
935   throw (SALOME::SALOME_Exception)
936 {
937   SMESH_TRY;
938   initData();
939
940   if ( diameter < std::numeric_limits<double>::min() )
941     THROW_SALOME_CORBA_EXCEPTION("Invalid diameter", SALOME::BAD_PARAM);
942
943   const SMDS_MeshNode* aNode = getMeshDS()->FindNode(IDOfNode);
944   SMDS_MeshElement* elem = getMeshDS()->AddBall(aNode, diameter);
945
946   // Update Python script
947   TPythonDump() << "ballElem = "
948                 << this << ".AddBall( " << IDOfNode << ", " << diameter <<" )";
949
950   declareMeshModified( /*isReComputeSafe=*/false );
951   return elem ? elem->GetID() : 0;
952
953   SMESH_CATCH( SMESH::throwCorbaException );
954   return 0;
955 }
956
957 //=============================================================================
958 /*!
959  * Create an edge, either linear and quadratic (this is determed
960  *  by number of given nodes, two or three)
961  */
962 //=============================================================================
963
964 CORBA::Long SMESH_MeshEditor_i::AddEdge(const SMESH::long_array & IDsOfNodes)
965   throw (SALOME::SALOME_Exception)
966 {
967   SMESH_TRY;
968   initData();
969
970   int NbNodes = IDsOfNodes.length();
971   SMDS_MeshElement* elem = 0;
972   if (NbNodes == 2)
973   {
974     CORBA::Long index1 = IDsOfNodes[0];
975     CORBA::Long index2 = IDsOfNodes[1];
976     elem = getMeshDS()->AddEdge( getMeshDS()->FindNode(index1),
977                                  getMeshDS()->FindNode(index2));
978
979     // Update Python script
980     TPythonDump() << "edge = " << this << ".AddEdge([ "
981                   << index1 << ", " << index2 <<" ])";
982   }
983   if (NbNodes == 3) {
984     CORBA::Long n1 = IDsOfNodes[0];
985     CORBA::Long n2 = IDsOfNodes[1];
986     CORBA::Long n12 = IDsOfNodes[2];
987     elem = getMeshDS()->AddEdge( getMeshDS()->FindNode(n1),
988                                  getMeshDS()->FindNode(n2),
989                                  getMeshDS()->FindNode(n12));
990     // Update Python script
991     TPythonDump() << "edgeID = " << this << ".AddEdge([ "
992                   <<n1<<", "<<n2<<", "<<n12<<" ])";
993   }
994
995   declareMeshModified( /*isReComputeSafe=*/false );
996   return elem ? elem->GetID() : 0;
997
998   SMESH_CATCH( SMESH::throwCorbaException );
999   return 0;
1000 }
1001
1002 //=============================================================================
1003 /*!
1004  *  AddFace
1005  */
1006 //=============================================================================
1007
1008 CORBA::Long SMESH_MeshEditor_i::AddFace(const SMESH::long_array & IDsOfNodes)
1009   throw (SALOME::SALOME_Exception)
1010 {
1011   SMESH_TRY;
1012   initData();
1013
1014   int NbNodes = IDsOfNodes.length();
1015   if (NbNodes < 3)
1016   {
1017     return 0;
1018   }
1019
1020   std::vector<const SMDS_MeshNode*> nodes (NbNodes);
1021   for (int i = 0; i < NbNodes; i++)
1022     nodes[i] = getMeshDS()->FindNode(IDsOfNodes[i]);
1023
1024   SMDS_MeshElement* elem = 0;
1025   switch (NbNodes) {
1026   case 3: elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2]); break;
1027   case 4: elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3]); break;
1028   case 6: elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
1029                                       nodes[4], nodes[5]); break;
1030   case 7: elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
1031                                       nodes[4], nodes[5], nodes[6]); break;
1032   case 8: elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
1033                                       nodes[4], nodes[5], nodes[6], nodes[7]); break;
1034   case 9: elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
1035                                       nodes[4], nodes[5], nodes[6], nodes[7],
1036                                       nodes[8] ); break;
1037   default: elem = getMeshDS()->AddPolygonalFace(nodes);
1038   }
1039
1040   // Update Python script
1041   TPythonDump() << "faceID = " << this << ".AddFace( " << IDsOfNodes << " )";
1042
1043   declareMeshModified( /*isReComputeSafe=*/false );
1044
1045   return elem ? elem->GetID() : 0;
1046
1047   SMESH_CATCH( SMESH::throwCorbaException );
1048   return 0;
1049 }
1050
1051 //=============================================================================
1052 /*!
1053  *  AddPolygonalFace
1054  */
1055 //=============================================================================
1056
1057 CORBA::Long SMESH_MeshEditor_i::AddPolygonalFace (const SMESH::long_array & IDsOfNodes)
1058   throw (SALOME::SALOME_Exception)
1059 {
1060   SMESH_TRY;
1061   initData();
1062
1063   int NbNodes = IDsOfNodes.length();
1064   std::vector<const SMDS_MeshNode*> nodes (NbNodes);
1065   for (int i = 0; i < NbNodes; i++)
1066     if ( ! ( nodes[i] = getMeshDS()->FindNode( IDsOfNodes[i] )))
1067       return 0;
1068
1069   const SMDS_MeshElement* elem = getMeshDS()->AddPolygonalFace(nodes);
1070
1071   // Update Python script
1072   TPythonDump() <<"faceID = "<<this<<".AddPolygonalFace( "<<IDsOfNodes<<" )";
1073
1074   declareMeshModified( /*isReComputeSafe=*/false );
1075   return elem ? elem->GetID() : 0;
1076
1077   SMESH_CATCH( SMESH::throwCorbaException );
1078   return 0;
1079 }
1080
1081 //=============================================================================
1082 /*!
1083  *  AddQuadPolygonalFace
1084  */
1085 //=============================================================================
1086
1087 CORBA::Long SMESH_MeshEditor_i::AddQuadPolygonalFace (const SMESH::long_array & IDsOfNodes)
1088   throw (SALOME::SALOME_Exception)
1089 {
1090   SMESH_TRY;
1091   initData();
1092
1093   int NbNodes = IDsOfNodes.length();
1094   std::vector<const SMDS_MeshNode*> nodes (NbNodes);
1095   for (int i = 0; i < NbNodes; i++)
1096     nodes[i] = getMeshDS()->FindNode(IDsOfNodes[i]);
1097
1098   const SMDS_MeshElement* elem = getMeshDS()->AddQuadPolygonalFace(nodes);
1099
1100   // Update Python script
1101   TPythonDump() <<"faceID = "<<this<<".AddPolygonalFace( "<<IDsOfNodes<<" )";
1102
1103   declareMeshModified( /*isReComputeSafe=*/false );
1104   return elem ? elem->GetID() : 0;
1105
1106   SMESH_CATCH( SMESH::throwCorbaException );
1107   return 0;
1108 }
1109
1110 //=============================================================================
1111 /*!
1112  * Create volume, either linear and quadratic (this is determed
1113  *  by number of given nodes)
1114  */
1115 //=============================================================================
1116
1117 CORBA::Long SMESH_MeshEditor_i::AddVolume(const SMESH::long_array & IDsOfNodes)
1118   throw (SALOME::SALOME_Exception)
1119 {
1120   SMESH_TRY;
1121   initData();
1122
1123   int NbNodes = IDsOfNodes.length();
1124   vector< const SMDS_MeshNode*> n(NbNodes);
1125   for(int i=0;i<NbNodes;i++)
1126     n[i]= getMeshDS()->FindNode(IDsOfNodes[i]);
1127
1128   SMDS_MeshElement* elem = 0;
1129   switch(NbNodes)
1130   {
1131   case 4 :elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3]); break;
1132   case 5 :elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4]); break;
1133   case 6 :elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5]); break;
1134   case 8 :elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7]); break;
1135   case 10:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],
1136                                         n[6],n[7],n[8],n[9]);
1137     break;
1138   case 12:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],
1139                                         n[6],n[7],n[8],n[9],n[10],n[11]);
1140     break;
1141   case 13:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],
1142                                         n[7],n[8],n[9],n[10],n[11],n[12]);
1143     break;
1144   case 15:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],n[8],
1145                                         n[9],n[10],n[11],n[12],n[13],n[14]);
1146     break;
1147   case 20:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],
1148                                         n[8],n[9],n[10],n[11],n[12],n[13],n[14],
1149                                         n[15],n[16],n[17],n[18],n[19]);
1150     break;
1151   case 27:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],
1152                                         n[8],n[9],n[10],n[11],n[12],n[13],n[14],
1153                                         n[15],n[16],n[17],n[18],n[19],
1154                                         n[20],n[21],n[22],n[23],n[24],n[25],n[26]);
1155     break;
1156   }
1157
1158   // Update Python script
1159   TPythonDump() << "volID = " << this << ".AddVolume( " << IDsOfNodes << " )";
1160
1161   declareMeshModified( /*isReComputeSafe=*/false );
1162   return elem ? elem->GetID() : 0;
1163
1164   SMESH_CATCH( SMESH::throwCorbaException );
1165   return 0;
1166 }
1167
1168 //=============================================================================
1169 /*!
1170  *  AddPolyhedralVolume
1171  */
1172 //=============================================================================
1173 CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolume (const SMESH::long_array & IDsOfNodes,
1174                                                      const SMESH::long_array & Quantities)
1175   throw (SALOME::SALOME_Exception)
1176 {
1177   SMESH_TRY;
1178   initData();
1179
1180   int NbNodes = IDsOfNodes.length();
1181   std::vector<const SMDS_MeshNode*> n (NbNodes);
1182   for (int i = 0; i < NbNodes; i++)
1183     {
1184       const SMDS_MeshNode* aNode = getMeshDS()->FindNode(IDsOfNodes[i]);
1185       if (!aNode) return 0;
1186       n[i] = aNode;
1187     }
1188
1189   int NbFaces = Quantities.length();
1190   std::vector<int> q (NbFaces);
1191   for (int j = 0; j < NbFaces; j++)
1192     q[j] = Quantities[j];
1193
1194   const SMDS_MeshElement* elem = getMeshDS()->AddPolyhedralVolume(n, q);
1195
1196   // Update Python script
1197   TPythonDump() << "volID = " << this << ".AddPolyhedralVolume( "
1198                 << IDsOfNodes << ", " << Quantities << " )";
1199
1200   declareMeshModified( /*isReComputeSafe=*/false );
1201   return elem ? elem->GetID() : 0;
1202
1203   SMESH_CATCH( SMESH::throwCorbaException );
1204   return 0;
1205 }
1206
1207 //=============================================================================
1208 /*!
1209  *  AddPolyhedralVolumeByFaces
1210  */
1211 //=============================================================================
1212
1213 CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolumeByFaces (const SMESH::long_array & IdsOfFaces)
1214   throw (SALOME::SALOME_Exception)
1215 {
1216   SMESH_TRY;
1217   initData();
1218
1219   int NbFaces = IdsOfFaces.length();
1220   std::vector<const SMDS_MeshNode*> poly_nodes;
1221   std::vector<int> quantities (NbFaces);
1222
1223   for (int i = 0; i < NbFaces; i++) {
1224     const SMDS_MeshElement* aFace = getMeshDS()->FindElement(IdsOfFaces[i]);
1225     quantities[i] = aFace->NbNodes();
1226
1227     SMDS_ElemIteratorPtr It = aFace->nodesIterator();
1228     while (It->more()) {
1229       poly_nodes.push_back(static_cast<const SMDS_MeshNode *>(It->next()));
1230     }
1231   }
1232
1233   const SMDS_MeshElement* elem = getMeshDS()->AddPolyhedralVolume(poly_nodes, quantities);
1234
1235   // Update Python script
1236   TPythonDump() << "volID = " << this << ".AddPolyhedralVolumeByFaces( "
1237                 << IdsOfFaces << " )";
1238
1239   declareMeshModified( /*isReComputeSafe=*/false );
1240   return elem ? elem->GetID() : 0;
1241
1242   SMESH_CATCH( SMESH::throwCorbaException );
1243   return 0;
1244 }
1245
1246 //=============================================================================
1247 //
1248 // \brief Create 0D elements on all nodes of the given object except those 
1249 //        nodes on which a 0D element already exists.
1250 //  \param theObject object on whose nodes 0D elements will be created.
1251 //  \param theGroupName optional name of a group to add 0D elements created
1252 //         and/or found on nodes of \a theObject.
1253 //  \return an object (a new group or a temporary SMESH_IDSource) holding
1254 //          ids of new and/or found 0D elements.
1255 //
1256 //=============================================================================
1257
1258 SMESH::SMESH_IDSource_ptr
1259 SMESH_MeshEditor_i::Create0DElementsOnAllNodes(SMESH::SMESH_IDSource_ptr theObject,
1260                                                const char*               theGroupName)
1261   throw (SALOME::SALOME_Exception)
1262 {
1263   SMESH_TRY;
1264   initData();
1265
1266   SMESH::SMESH_IDSource_var result;
1267   TPythonDump pyDump;
1268
1269   TIDSortedElemSet elements, elems0D;
1270   if ( idSourceToSet( theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
1271     getEditor().Create0DElementsOnAllNodes( elements, elems0D );
1272
1273   SMESH::long_array_var newElems = new SMESH::long_array;
1274   newElems->length( elems0D.size() );
1275   TIDSortedElemSet::iterator eIt = elems0D.begin();
1276   for ( size_t i = 0; i < elems0D.size(); ++i, ++eIt )
1277     newElems[ i ] = (*eIt)->GetID();
1278
1279   SMESH::SMESH_GroupBase_var groupToFill;
1280   if ( theGroupName && strlen( theGroupName ))
1281   {
1282     // Get existing group named theGroupName
1283     SMESH::ListOfGroups_var groups = myMesh_i->GetGroups();
1284     for (int i = 0, nbGroups = groups->length(); i < nbGroups; i++ ) {
1285       SMESH::SMESH_GroupBase_var group = groups[i];
1286       if ( !group->_is_nil() ) {
1287         CORBA::String_var name = group->GetName();
1288         if ( strcmp( name.in(), theGroupName ) == 0 && group->GetType() == SMESH::ELEM0D ) {
1289           groupToFill = group;
1290           break;
1291         }
1292       }
1293     }
1294     if ( groupToFill->_is_nil() )
1295       groupToFill = myMesh_i->CreateGroup( SMESH::ELEM0D, theGroupName );
1296     else if ( !SMESH::DownCast< SMESH_Group_i* > ( groupToFill ))
1297       groupToFill = myMesh_i->ConvertToStandalone( groupToFill );
1298   }
1299
1300   if ( SMESH_Group_i* group_i = SMESH::DownCast< SMESH_Group_i* > ( groupToFill ))
1301   {
1302     group_i->Add( newElems );
1303     result = SMESH::SMESH_IDSource::_narrow( groupToFill );
1304     pyDump << groupToFill;
1305   }
1306   else
1307   {
1308     result = MakeIDSource( newElems, SMESH::ELEM0D );
1309     pyDump << "elem0DIDs";
1310   }
1311
1312   pyDump << " = " << this << ".Create0DElementsOnAllNodes( "
1313          << theObject << ", '" << theGroupName << "' )";
1314
1315   return result._retn();
1316
1317   SMESH_CATCH( SMESH::throwCorbaException );
1318   return 0;
1319 }
1320
1321 //=============================================================================
1322 /*!
1323  * \brief Bind a node to a vertex
1324  * \param NodeID - node ID
1325  * \param VertexID - vertex ID available through GEOM_Object.GetSubShapeIndices()[0]
1326  * \retval boolean - false if NodeID or VertexID is invalid
1327  */
1328 //=============================================================================
1329
1330 void SMESH_MeshEditor_i::SetNodeOnVertex(CORBA::Long NodeID, CORBA::Long VertexID)
1331   throw (SALOME::SALOME_Exception)
1332 {
1333   SMESH_TRY;
1334
1335   SMESHDS_Mesh * mesh = getMeshDS();
1336   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
1337   if ( !node )
1338     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
1339
1340   if ( mesh->MaxShapeIndex() < VertexID )
1341     THROW_SALOME_CORBA_EXCEPTION("Invalid VertexID", SALOME::BAD_PARAM);
1342
1343   TopoDS_Shape shape = mesh->IndexToShape( VertexID );
1344   if ( shape.ShapeType() != TopAbs_VERTEX )
1345     THROW_SALOME_CORBA_EXCEPTION("Invalid VertexID", SALOME::BAD_PARAM);
1346
1347   mesh->SetNodeOnVertex( node, VertexID );
1348
1349   myMesh->SetIsModified( true );
1350
1351   SMESH_CATCH( SMESH::throwCorbaException );
1352 }
1353
1354 //=============================================================================
1355 /*!
1356  * \brief Store node position on an edge
1357  * \param NodeID - node ID
1358  * \param EdgeID - edge ID available through GEOM_Object.GetSubShapeIndices()[0]
1359  * \param paramOnEdge - parameter on edge where the node is located
1360  * \retval boolean - false if any parameter is invalid
1361  */
1362 //=============================================================================
1363
1364 void SMESH_MeshEditor_i::SetNodeOnEdge(CORBA::Long NodeID, CORBA::Long EdgeID,
1365                                        CORBA::Double paramOnEdge)
1366   throw (SALOME::SALOME_Exception)
1367 {
1368   SMESH_TRY;
1369
1370   SMESHDS_Mesh * mesh = getMeshDS();
1371   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
1372   if ( !node )
1373     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
1374
1375   if ( mesh->MaxShapeIndex() < EdgeID )
1376     THROW_SALOME_CORBA_EXCEPTION("Invalid EdgeID", SALOME::BAD_PARAM);
1377
1378   TopoDS_Shape shape = mesh->IndexToShape( EdgeID );
1379   if ( shape.ShapeType() != TopAbs_EDGE )
1380     THROW_SALOME_CORBA_EXCEPTION("Invalid EdgeID", SALOME::BAD_PARAM);
1381
1382   Standard_Real f,l;
1383   BRep_Tool::Range( TopoDS::Edge( shape ), f,l);
1384   if ( paramOnEdge < f || paramOnEdge > l )
1385     THROW_SALOME_CORBA_EXCEPTION("Invalid paramOnEdge", SALOME::BAD_PARAM);
1386
1387   mesh->SetNodeOnEdge( node, EdgeID, paramOnEdge );
1388
1389   myMesh->SetIsModified( true );
1390
1391   SMESH_CATCH( SMESH::throwCorbaException );
1392 }
1393
1394 //=============================================================================
1395 /*!
1396  * \brief Store node position on a face
1397  * \param NodeID - node ID
1398  * \param FaceID - face ID available through GEOM_Object.GetSubShapeIndices()[0]
1399  * \param u - U parameter on face where the node is located
1400  * \param v - V parameter on face where the node is located
1401  * \retval boolean - false if any parameter is invalid
1402  */
1403 //=============================================================================
1404
1405 void SMESH_MeshEditor_i::SetNodeOnFace(CORBA::Long NodeID, CORBA::Long FaceID,
1406                                        CORBA::Double u, CORBA::Double v)
1407   throw (SALOME::SALOME_Exception)
1408 {
1409   SMESH_TRY;
1410   SMESHDS_Mesh * mesh = getMeshDS();
1411   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
1412   if ( !node )
1413     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
1414
1415   if ( mesh->MaxShapeIndex() < FaceID )
1416     THROW_SALOME_CORBA_EXCEPTION("Invalid FaceID", SALOME::BAD_PARAM);
1417
1418   TopoDS_Shape shape = mesh->IndexToShape( FaceID );
1419   if ( shape.ShapeType() != TopAbs_FACE )
1420     THROW_SALOME_CORBA_EXCEPTION("Invalid FaceID", SALOME::BAD_PARAM);
1421
1422   BRepAdaptor_Surface surf( TopoDS::Face( shape ));
1423   bool isOut = ( u < surf.FirstUParameter() ||
1424                  u > surf.LastUParameter()  ||
1425                  v < surf.FirstVParameter() ||
1426                  v > surf.LastVParameter() );
1427
1428   if ( isOut ) {
1429 #ifdef _DEBUG_
1430     MESSAGE ( "FACE " << FaceID << " (" << u << "," << v << ") out of "
1431               << " u( " <<  surf.FirstUParameter()
1432               << "," <<  surf.LastUParameter()
1433               << ") v( " <<  surf.FirstVParameter()
1434               << "," <<  surf.LastVParameter() << ")" );
1435 #endif
1436     THROW_SALOME_CORBA_EXCEPTION("Invalid UV", SALOME::BAD_PARAM);
1437   }
1438
1439   mesh->SetNodeOnFace( node, FaceID, u, v );
1440   myMesh->SetIsModified( true );
1441
1442   SMESH_CATCH( SMESH::throwCorbaException );
1443 }
1444
1445 //=============================================================================
1446 /*!
1447  * \brief Bind a node to a solid
1448  * \param NodeID - node ID
1449  * \param SolidID - vertex ID available through GEOM_Object.GetSubShapeIndices()[0]
1450  * \retval boolean - false if NodeID or SolidID is invalid
1451  */
1452 //=============================================================================
1453
1454 void SMESH_MeshEditor_i::SetNodeInVolume(CORBA::Long NodeID, CORBA::Long SolidID)
1455   throw (SALOME::SALOME_Exception)
1456 {
1457   SMESH_TRY;
1458   SMESHDS_Mesh * mesh = getMeshDS();
1459   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
1460   if ( !node )
1461     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
1462
1463   if ( mesh->MaxShapeIndex() < SolidID )
1464     THROW_SALOME_CORBA_EXCEPTION("Invalid SolidID", SALOME::BAD_PARAM);
1465
1466   TopoDS_Shape shape = mesh->IndexToShape( SolidID );
1467   if ( shape.ShapeType() != TopAbs_SOLID &&
1468        shape.ShapeType() != TopAbs_SHELL)
1469     THROW_SALOME_CORBA_EXCEPTION("Invalid SolidID", SALOME::BAD_PARAM);
1470
1471   mesh->SetNodeInVolume( node, SolidID );
1472
1473   SMESH_CATCH( SMESH::throwCorbaException );
1474 }
1475
1476 //=============================================================================
1477 /*!
1478  * \brief Bind an element to a shape
1479  * \param ElementID - element ID
1480  * \param ShapeID - shape ID available through GEOM_Object.GetSubShapeIndices()[0]
1481  */
1482 //=============================================================================
1483
1484 void SMESH_MeshEditor_i::SetMeshElementOnShape(CORBA::Long ElementID,
1485                                                CORBA::Long ShapeID)
1486   throw (SALOME::SALOME_Exception)
1487 {
1488   SMESH_TRY;
1489   SMESHDS_Mesh * mesh = getMeshDS();
1490   SMDS_MeshElement* elem = const_cast<SMDS_MeshElement*>(mesh->FindElement(ElementID));
1491   if ( !elem )
1492     THROW_SALOME_CORBA_EXCEPTION("Invalid ElementID", SALOME::BAD_PARAM);
1493
1494   if ( mesh->MaxShapeIndex() < ShapeID || ShapeID < 1 )
1495     THROW_SALOME_CORBA_EXCEPTION("Invalid ShapeID", SALOME::BAD_PARAM);
1496
1497   TopoDS_Shape shape = mesh->IndexToShape( ShapeID );
1498   if ( shape.ShapeType() != TopAbs_EDGE &&
1499        shape.ShapeType() != TopAbs_FACE &&
1500        shape.ShapeType() != TopAbs_SOLID &&
1501        shape.ShapeType() != TopAbs_SHELL )
1502     THROW_SALOME_CORBA_EXCEPTION("Invalid shape type", SALOME::BAD_PARAM);
1503
1504   mesh->SetMeshElementOnShape( elem, ShapeID );
1505
1506   myMesh->SetIsModified( true );
1507
1508   SMESH_CATCH( SMESH::throwCorbaException );
1509 }
1510
1511 //=============================================================================
1512 /*!
1513  *
1514  */
1515 //=============================================================================
1516
1517 CORBA::Boolean SMESH_MeshEditor_i::InverseDiag(CORBA::Long NodeID1,
1518                                                CORBA::Long NodeID2)
1519   throw (SALOME::SALOME_Exception)
1520 {
1521   SMESH_TRY;
1522   initData();
1523
1524   const SMDS_MeshNode * n1 = getMeshDS()->FindNode( NodeID1 );
1525   const SMDS_MeshNode * n2 = getMeshDS()->FindNode( NodeID2 );
1526   if ( !n1 || !n2 )
1527     return false;
1528
1529   // Update Python script
1530   TPythonDump() << "isDone = " << this << ".InverseDiag( "
1531                 << NodeID1 << ", " << NodeID2 << " )";
1532
1533   int ret =  getEditor().InverseDiag ( n1, n2 );
1534
1535   declareMeshModified( /*isReComputeSafe=*/false );
1536   return ret;
1537
1538   SMESH_CATCH( SMESH::throwCorbaException );
1539   return 0;
1540 }
1541
1542 //=============================================================================
1543 /*!
1544  *
1545  */
1546 //=============================================================================
1547
1548 CORBA::Boolean SMESH_MeshEditor_i::DeleteDiag(CORBA::Long NodeID1,
1549                                               CORBA::Long NodeID2)
1550   throw (SALOME::SALOME_Exception)
1551 {
1552   SMESH_TRY;
1553   initData();
1554
1555   const SMDS_MeshNode * n1 = getMeshDS()->FindNode( NodeID1 );
1556   const SMDS_MeshNode * n2 = getMeshDS()->FindNode( NodeID2 );
1557   if ( !n1 || !n2 )
1558     return false;
1559
1560   // Update Python script
1561   TPythonDump() << "isDone = " << this << ".DeleteDiag( "
1562                 << NodeID1 << ", " << NodeID2 <<  " )";
1563
1564
1565   bool stat = getEditor().DeleteDiag ( n1, n2 );
1566
1567   declareMeshModified( /*isReComputeSafe=*/!stat );
1568
1569   return stat;
1570
1571   SMESH_CATCH( SMESH::throwCorbaException );
1572   return 0;
1573 }
1574
1575 //=============================================================================
1576 /*!
1577  *
1578  */
1579 //=============================================================================
1580
1581 CORBA::Boolean SMESH_MeshEditor_i::Reorient(const SMESH::long_array & IDsOfElements)
1582   throw (SALOME::SALOME_Exception)
1583 {
1584   SMESH_TRY;
1585   initData();
1586
1587   for (int i = 0; i < IDsOfElements.length(); i++)
1588   {
1589     CORBA::Long index = IDsOfElements[i];
1590     const SMDS_MeshElement * elem = getMeshDS()->FindElement(index);
1591     if ( elem )
1592       getEditor().Reorient( elem );
1593   }
1594   // Update Python script
1595   TPythonDump() << "isDone = " << this << ".Reorient( " << IDsOfElements << " )";
1596
1597   declareMeshModified( /*isReComputeSafe=*/ IDsOfElements.length() == 0 );
1598   return true;
1599
1600   SMESH_CATCH( SMESH::throwCorbaException );
1601   return 0;
1602 }
1603
1604 //=============================================================================
1605 /*!
1606  *
1607  */
1608 //=============================================================================
1609
1610 CORBA::Boolean SMESH_MeshEditor_i::ReorientObject(SMESH::SMESH_IDSource_ptr theObject)
1611   throw (SALOME::SALOME_Exception)
1612 {
1613   SMESH_TRY;
1614   initData();
1615
1616   TPythonDump aTPythonDump; // suppress dump in Reorient()
1617
1618   prepareIdSource( theObject );
1619
1620   SMESH::long_array_var anElementsId = theObject->GetIDs();
1621   CORBA::Boolean isDone = Reorient(anElementsId);
1622
1623   // Update Python script
1624   aTPythonDump << "isDone = " << this << ".ReorientObject( " << theObject << " )";
1625
1626   declareMeshModified( /*isReComputeSafe=*/ anElementsId->length() == 0 );
1627   return isDone;
1628
1629   SMESH_CATCH( SMESH::throwCorbaException );
1630   return 0;
1631 }
1632
1633 //=======================================================================
1634 //function : Reorient2D
1635 //purpose  : Reorient faces contained in \a the2Dgroup.
1636 //           the2Dgroup   - the mesh or its part to reorient
1637 //           theDirection - desired direction of normal of \a theFace
1638 //           theFace      - ID of face whose orientation is checked.
1639 //           It can be < 1 then \a thePoint is used to find a face.
1640 //           thePoint     - is used to find a face if \a theFace < 1.
1641 //           return number of reoriented elements.
1642 //=======================================================================
1643
1644 CORBA::Long SMESH_MeshEditor_i::Reorient2D(SMESH::SMESH_IDSource_ptr the2Dgroup,
1645                                            const SMESH::DirStruct&   theDirection,
1646                                            CORBA::Long               theFace,
1647                                            const SMESH::PointStruct& thePoint)
1648   throw (SALOME::SALOME_Exception)
1649 {
1650   SMESH_TRY;
1651   initData(/*deleteSearchers=*/false);
1652
1653   TIDSortedElemSet elements;
1654   IDSource_Error error;
1655   idSourceToSet( the2Dgroup, getMeshDS(), elements, SMDSAbs_Face, /*emptyIfIsMesh=*/1, &error );
1656   if ( error == IDSource_EMPTY )
1657     return 0;
1658   if ( error == IDSource_INVALID )
1659     THROW_SALOME_CORBA_EXCEPTION("No faces in given group", SALOME::BAD_PARAM);
1660
1661
1662   const SMDS_MeshElement* face = 0;
1663   if ( theFace > 0 )
1664   {
1665     face = getMeshDS()->FindElement( theFace );
1666     if ( !face )
1667       THROW_SALOME_CORBA_EXCEPTION("Inexistent face given", SALOME::BAD_PARAM);
1668     if ( face->GetType() != SMDSAbs_Face )
1669       THROW_SALOME_CORBA_EXCEPTION("Wrong element type", SALOME::BAD_PARAM);
1670   }
1671   else
1672   {
1673     // create theElementSearcher if needed
1674     theSearchersDeleter.Set( myMesh, getPartIOR( the2Dgroup, SMESH::FACE ));
1675     if ( !theElementSearcher )
1676     {
1677       if ( elements.empty() ) // search in the whole mesh
1678       {
1679         if ( myMesh->NbFaces() == 0 )
1680           THROW_SALOME_CORBA_EXCEPTION("No faces in the mesh", SALOME::BAD_PARAM);
1681
1682         theElementSearcher = SMESH_MeshAlgos::GetElementSearcher( *getMeshDS() );
1683       }
1684       else
1685       {
1686         typedef SMDS_SetIterator<const SMDS_MeshElement*, TIDSortedElemSet::const_iterator > TIter;
1687         SMDS_ElemIteratorPtr elemsIt( new TIter( elements.begin(), elements.end() ));
1688
1689         theElementSearcher = SMESH_MeshAlgos::GetElementSearcher( *getMeshDS(), elemsIt);
1690       }
1691     }
1692     // find a face
1693     gp_Pnt p( thePoint.x, thePoint.y, thePoint.z );
1694     face = theElementSearcher->FindClosestTo( p, SMDSAbs_Face );
1695
1696     if ( !face )
1697       THROW_SALOME_CORBA_EXCEPTION("No face found by point", SALOME::INTERNAL_ERROR );
1698     if ( !elements.empty() && !elements.count( face ))
1699       THROW_SALOME_CORBA_EXCEPTION("Found face is not in the group", SALOME::BAD_PARAM );
1700   }
1701
1702   const SMESH::PointStruct * P = &theDirection.PS;
1703   gp_Vec dirVec( P->x, P->y, P->z );
1704   if ( dirVec.Magnitude() < std::numeric_limits< double >::min() )
1705     THROW_SALOME_CORBA_EXCEPTION("Zero size vector", SALOME::BAD_PARAM);
1706
1707   int nbReori = getEditor().Reorient2D( elements, dirVec, face );
1708
1709   if ( nbReori ) {
1710     declareMeshModified( /*isReComputeSafe=*/false );
1711   }
1712   TPythonDump() << this << ".Reorient2D( "
1713                 << the2Dgroup << ", "
1714                 << theDirection << ", "
1715                 << theFace << ", "
1716                 << thePoint << " )";
1717
1718   return nbReori;
1719
1720   SMESH_CATCH( SMESH::throwCorbaException );
1721   return 0;
1722 }
1723
1724 //=======================================================================
1725 //function : Reorient2DBy3D
1726 //purpose  : Reorient faces basing on orientation of adjacent volumes.
1727 //=======================================================================
1728
1729 CORBA::Long SMESH_MeshEditor_i::Reorient2DBy3D(const SMESH::ListOfIDSources& faceGroups,
1730                                                SMESH::SMESH_IDSource_ptr     volumeGroup,
1731                                                CORBA::Boolean                outsideNormal)
1732   throw (SALOME::SALOME_Exception)
1733 {
1734   SMESH_TRY;
1735   initData();
1736
1737   TIDSortedElemSet volumes;
1738   IDSource_Error volsError;
1739   idSourceToSet( volumeGroup, getMeshDS(), volumes, SMDSAbs_Volume, /*emptyIfMesh=*/1, &volsError);
1740
1741   int nbReori = 0;
1742   for ( size_t i = 0; i < faceGroups.length(); ++i )
1743   {
1744     SMESH::SMESH_IDSource_ptr faceGrp = faceGroups[i].in();
1745
1746     TIDSortedElemSet faces;
1747     IDSource_Error error;
1748     idSourceToSet( faceGrp, getMeshDS(), faces, SMDSAbs_Face, /*emptyIfIsMesh=*/1, &error );
1749     if ( error == IDSource_INVALID && faceGroups.length() == 1 )
1750       THROW_SALOME_CORBA_EXCEPTION("No faces in a given object", SALOME::BAD_PARAM);
1751     if ( error == IDSource_OK && volsError != IDSource_OK )
1752       THROW_SALOME_CORBA_EXCEPTION("No volumes in a given object", SALOME::BAD_PARAM);
1753
1754     nbReori += getEditor().Reorient2DBy3D( faces, volumes, outsideNormal );
1755
1756     if ( error != IDSource_EMPTY && faces.empty() ) // all faces in the mesh treated
1757       break;
1758   }
1759
1760   if ( nbReori ) {
1761     declareMeshModified( /*isReComputeSafe=*/false );
1762   }
1763   TPythonDump() << this << ".Reorient2DBy3D( "
1764                 << faceGroups << ", "
1765                 << volumeGroup << ", "
1766                 << outsideNormal << " )";
1767
1768   return nbReori;
1769
1770   SMESH_CATCH( SMESH::throwCorbaException );
1771   return 0;
1772 }
1773
1774 //=============================================================================
1775 /*!
1776  * \brief Fuse neighbour triangles into quadrangles.
1777  */
1778 //=============================================================================
1779
1780 CORBA::Boolean SMESH_MeshEditor_i::TriToQuad (const SMESH::long_array &   IDsOfElements,
1781                                               SMESH::NumericalFunctor_ptr Criterion,
1782                                               CORBA::Double               MaxAngle)
1783   throw (SALOME::SALOME_Exception)
1784 {
1785   SMESH_TRY;
1786   initData();
1787
1788   SMESHDS_Mesh* aMesh = getMeshDS();
1789   TIDSortedElemSet faces,copyFaces;
1790   SMDS_MeshElement::GeomFilter triaFilter(SMDSGeom_TRIANGLE);
1791   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face, & triaFilter);
1792   TIDSortedElemSet* workElements = & faces;
1793
1794   if ( myIsPreviewMode ) {
1795     SMDSAbs_ElementType select =  SMDSAbs_Face;
1796     getPreviewMesh( SMDSAbs_Face )->Copy( faces, copyFaces, select );
1797     workElements = & copyFaces;
1798   }
1799
1800   SMESH::NumericalFunctor_i* aNumericalFunctor =
1801     dynamic_cast<SMESH::NumericalFunctor_i*>( SMESH_Gen_i::GetServant( Criterion ).in() );
1802   SMESH::Controls::NumericalFunctorPtr aCrit;
1803   if ( !aNumericalFunctor )
1804     aCrit.reset( new SMESH::Controls::MaxElementLength2D() );
1805   else
1806     aCrit = aNumericalFunctor->GetNumericalFunctor();
1807
1808   if ( !myIsPreviewMode ) {
1809     // Update Python script
1810     TPythonDump() << "isDone = " << this << ".TriToQuad( "
1811                   << IDsOfElements << ", " << aNumericalFunctor << ", " << TVar( MaxAngle ) << " )";
1812   }
1813
1814   bool stat = getEditor().TriToQuad( *workElements, aCrit, MaxAngle );
1815
1816   declareMeshModified( /*isReComputeSafe=*/!stat );
1817   return stat;
1818
1819   SMESH_CATCH( SMESH::throwCorbaException );
1820   return 0;
1821 }
1822
1823 //=============================================================================
1824 /*!
1825  * \brief Fuse neighbour triangles into quadrangles.
1826  */
1827 //=============================================================================
1828
1829 CORBA::Boolean SMESH_MeshEditor_i::TriToQuadObject (SMESH::SMESH_IDSource_ptr   theObject,
1830                                                     SMESH::NumericalFunctor_ptr Criterion,
1831                                                     CORBA::Double               MaxAngle)
1832   throw (SALOME::SALOME_Exception)
1833 {
1834   SMESH_TRY;
1835   initData();
1836
1837   TPythonDump aTPythonDump;  // suppress dump in TriToQuad()
1838
1839   prepareIdSource( theObject );
1840   SMESH::long_array_var anElementsId = theObject->GetIDs();
1841   CORBA::Boolean isDone = TriToQuad(anElementsId, Criterion, MaxAngle);
1842
1843   if ( !myIsPreviewMode ) {
1844     SMESH::NumericalFunctor_i* aNumericalFunctor =
1845       SMESH::DownCast<SMESH::NumericalFunctor_i*>( Criterion );
1846
1847     // Update Python script
1848     aTPythonDump << "isDone = " << this << ".TriToQuadObject("
1849                  << theObject << ", " << aNumericalFunctor << ", " << TVar( MaxAngle ) << " )";
1850   }
1851
1852   return isDone;
1853
1854   SMESH_CATCH( SMESH::throwCorbaException );
1855   return 0;
1856 }
1857
1858 //=============================================================================
1859 /*!
1860  * \brief Split quadrangles into triangles.
1861  */
1862 //=============================================================================
1863
1864 CORBA::Boolean SMESH_MeshEditor_i::QuadToTri (const SMESH::long_array &   IDsOfElements,
1865                                               SMESH::NumericalFunctor_ptr Criterion)
1866   throw (SALOME::SALOME_Exception)
1867 {
1868   SMESH_TRY;
1869   initData();
1870
1871   SMESHDS_Mesh* aMesh = getMeshDS();
1872   TIDSortedElemSet faces;
1873   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face);
1874
1875   SMESH::NumericalFunctor_i* aNumericalFunctor =
1876     dynamic_cast<SMESH::NumericalFunctor_i*>( SMESH_Gen_i::GetServant( Criterion ).in() );
1877   SMESH::Controls::NumericalFunctorPtr aCrit;
1878   if ( !aNumericalFunctor )
1879     aCrit.reset( new SMESH::Controls::AspectRatio() );
1880   else
1881     aCrit = aNumericalFunctor->GetNumericalFunctor();
1882
1883
1884   // Update Python script
1885   TPythonDump() << "isDone = " << this << ".QuadToTri( " << IDsOfElements << ", " << aNumericalFunctor << " )";
1886
1887   CORBA::Boolean stat = getEditor().QuadToTri( faces, aCrit );
1888
1889   declareMeshModified( /*isReComputeSafe=*/false );
1890   return stat;
1891
1892   SMESH_CATCH( SMESH::throwCorbaException );
1893   return 0;
1894 }
1895
1896 //=============================================================================
1897 /*!
1898  * \brief Split quadrangles into triangles.
1899  */
1900 //=============================================================================
1901
1902 CORBA::Boolean SMESH_MeshEditor_i::QuadToTriObject (SMESH::SMESH_IDSource_ptr   theObject,
1903                                                     SMESH::NumericalFunctor_ptr Criterion)
1904   throw (SALOME::SALOME_Exception)
1905 {
1906   SMESH_TRY;
1907   initData();
1908
1909   TPythonDump aTPythonDump;  // suppress dump in QuadToTri()
1910
1911   prepareIdSource( theObject );
1912   SMESH::long_array_var anElementsId = theObject->GetIDs();
1913   CORBA::Boolean isDone = QuadToTri(anElementsId, Criterion);
1914
1915   SMESH::NumericalFunctor_i* aNumericalFunctor =
1916     SMESH::DownCast<SMESH::NumericalFunctor_i*>( Criterion );
1917
1918   // Update Python script
1919   aTPythonDump << "isDone = " << this << ".QuadToTriObject( " << theObject << ", " << aNumericalFunctor << " )";
1920
1921   declareMeshModified( /*isReComputeSafe=*/false );
1922   return isDone;
1923
1924   SMESH_CATCH( SMESH::throwCorbaException );
1925   return 0;
1926 }
1927
1928 //================================================================================
1929 /*!
1930  * \brief Split each of quadrangles into 4 triangles.
1931  *  \param [in] theObject - theQuads Container of quadrangles to split.
1932  */
1933 //================================================================================
1934
1935 void SMESH_MeshEditor_i::QuadTo4Tri (SMESH::SMESH_IDSource_ptr theObject)
1936   throw (SALOME::SALOME_Exception)
1937 {
1938   SMESH_TRY;
1939   initData();
1940
1941   TIDSortedElemSet faces;
1942   if ( !idSourceToSet( theObject, getMeshDS(), faces, SMDSAbs_Face, /*emptyIfIsMesh=*/true ) &&
1943        faces.empty() )
1944     THROW_SALOME_CORBA_EXCEPTION("No faces given", SALOME::BAD_PARAM);
1945
1946   getEditor().QuadTo4Tri( faces );
1947   TPythonDump() << this << ".QuadTo4Tri( " << theObject << " )";
1948
1949   SMESH_CATCH( SMESH::throwCorbaException );
1950 }
1951
1952 //=============================================================================
1953 /*!
1954  * \brief Split quadrangles into triangles.
1955  */
1956 //=============================================================================
1957
1958 CORBA::Boolean SMESH_MeshEditor_i::SplitQuad (const SMESH::long_array & IDsOfElements,
1959                                               CORBA::Boolean            Diag13)
1960   throw (SALOME::SALOME_Exception)
1961 {
1962   SMESH_TRY;
1963   initData();
1964
1965   SMESHDS_Mesh* aMesh = getMeshDS();
1966   TIDSortedElemSet faces;
1967   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face);
1968
1969   // Update Python script
1970   TPythonDump() << "isDone = " << this << ".SplitQuad( "
1971                 << IDsOfElements << ", " << Diag13 << " )";
1972
1973   CORBA::Boolean stat = getEditor().QuadToTri( faces, Diag13 );
1974
1975   declareMeshModified( /*isReComputeSafe=*/ !stat );
1976   return stat;
1977
1978   SMESH_CATCH( SMESH::throwCorbaException );
1979   return 0;
1980 }
1981
1982 //=============================================================================
1983 /*!
1984  * \brief Split quadrangles into triangles.
1985  */
1986 //=============================================================================
1987
1988 CORBA::Boolean SMESH_MeshEditor_i::SplitQuadObject (SMESH::SMESH_IDSource_ptr theObject,
1989                                                     CORBA::Boolean            Diag13)
1990   throw (SALOME::SALOME_Exception)
1991 {
1992   SMESH_TRY;
1993   initData();
1994
1995   TPythonDump aTPythonDump;  // suppress dump in SplitQuad()
1996
1997   prepareIdSource( theObject );
1998   SMESH::long_array_var anElementsId = theObject->GetIDs();
1999   CORBA::Boolean isDone = SplitQuad(anElementsId, Diag13);
2000
2001   // Update Python script
2002   aTPythonDump << "isDone = " << this << ".SplitQuadObject( "
2003                << theObject << ", " << Diag13 << " )";
2004
2005   declareMeshModified( /*isReComputeSafe=*/!isDone );
2006   return isDone;
2007
2008   SMESH_CATCH( SMESH::throwCorbaException );
2009   return 0;
2010 }
2011
2012
2013 //=============================================================================
2014 /*!
2015  * Find better splitting of the given quadrangle.
2016  *  \param IDOfQuad  ID of the quadrangle to be splitted.
2017  *  \param Criterion A criterion to choose a diagonal for splitting.
2018  *  \return 1 if 1-3 diagonal is better, 2 if 2-4
2019  *          diagonal is better, 0 if error occurs.
2020  */
2021 //=============================================================================
2022
2023 CORBA::Long SMESH_MeshEditor_i::BestSplit (CORBA::Long                 IDOfQuad,
2024                                            SMESH::NumericalFunctor_ptr Criterion)
2025   throw (SALOME::SALOME_Exception)
2026 {
2027   SMESH_TRY;
2028   initData();
2029
2030   const SMDS_MeshElement* quad = getMeshDS()->FindElement(IDOfQuad);
2031   if (quad && quad->GetType() == SMDSAbs_Face && quad->NbNodes() == 4)
2032   {
2033     SMESH::NumericalFunctor_i* aNumericalFunctor =
2034       dynamic_cast<SMESH::NumericalFunctor_i*>(SMESH_Gen_i::GetServant(Criterion).in());
2035     SMESH::Controls::NumericalFunctorPtr aCrit;
2036     if (aNumericalFunctor)
2037       aCrit = aNumericalFunctor->GetNumericalFunctor();
2038     else
2039       aCrit.reset(new SMESH::Controls::AspectRatio());
2040
2041     int id = getEditor().BestSplit(quad, aCrit);
2042     declareMeshModified( /*isReComputeSafe=*/ id < 1 );
2043     return id;
2044   }
2045
2046   SMESH_CATCH( SMESH::throwCorbaException );
2047   return 0;
2048 }
2049
2050 //================================================================================
2051 /*!
2052  * \brief Split volumic elements into tetrahedrons
2053  */
2054 //================================================================================
2055
2056 void SMESH_MeshEditor_i::SplitVolumesIntoTetra (SMESH::SMESH_IDSource_ptr elems,
2057                                                 CORBA::Short              methodFlags)
2058   throw (SALOME::SALOME_Exception)
2059 {
2060   SMESH_TRY;
2061   initData();
2062
2063   ::SMESH_MeshEditor::TFacetOfElem elemSet;
2064   const int noneFacet = -1;
2065   SMDS_ElemIteratorPtr volIt = myMesh_i->GetElements( elems, SMESH::VOLUME );
2066   while( volIt->more() )
2067     elemSet.insert( elemSet.end(), make_pair( volIt->next(), noneFacet ));
2068
2069   getEditor().SplitVolumes( elemSet, int( methodFlags ));
2070   declareMeshModified( /*isReComputeSafe=*/true ); // it does not influence Compute()
2071
2072   TPythonDump() << this << ".SplitVolumesIntoTetra( "
2073                 << elems << ", " << methodFlags << " )";
2074
2075   SMESH_CATCH( SMESH::throwCorbaException );
2076 }
2077
2078 //================================================================================
2079 /*!
2080  * \brief Split hexahedra into triangular prisms
2081  *  \param elems - elements to split
2082  *  \param facetToSplitNormal - normal used to find a facet of hexahedron
2083  *         to split into triangles
2084  *  \param methodFlags - flags passing splitting method:
2085  *         1 - split the hexahedron into 2 prisms
2086  *         2 - split the hexahedron into 4 prisms
2087  */
2088 //================================================================================
2089
2090 void SMESH_MeshEditor_i::SplitHexahedraIntoPrisms( SMESH::SMESH_IDSource_ptr  elems,
2091                                                    const SMESH::PointStruct & startHexPoint,
2092                                                    const SMESH::DirStruct&    facetToSplitNormal,
2093                                                    CORBA::Short               methodFlags,
2094                                                    CORBA::Boolean             allDomains)
2095   throw (SALOME::SALOME_Exception)
2096 {
2097   SMESH_TRY;
2098   initData();
2099   prepareIdSource( elems );
2100
2101   gp_Ax1 facetNorm( gp_Pnt( startHexPoint.x,
2102                             startHexPoint.y,
2103                             startHexPoint.z ),
2104                     gp_Dir( facetToSplitNormal.PS.x,
2105                             facetToSplitNormal.PS.y,
2106                             facetToSplitNormal.PS.z ));
2107   TIDSortedElemSet elemSet;
2108   SMESH::long_array_var anElementsId = elems->GetIDs();
2109   SMDS_MeshElement::GeomFilter filter( SMDSGeom_HEXA );
2110   arrayToSet( anElementsId, getMeshDS(), elemSet, SMDSAbs_Volume, &filter );
2111
2112   ::SMESH_MeshEditor::TFacetOfElem elemFacets;
2113   while ( !elemSet.empty() )
2114   {
2115     getEditor().GetHexaFacetsToSplit( elemSet, facetNorm, elemFacets );
2116     if ( !allDomains )
2117       break;
2118
2119     ::SMESH_MeshEditor::TFacetOfElem::iterator ef = elemFacets.begin();
2120     for ( ; ef != elemFacets.end(); ++ef )
2121       elemSet.erase( ef->first );
2122   }
2123
2124   if ( methodFlags == 2 )
2125     methodFlags = int( ::SMESH_MeshEditor::HEXA_TO_4_PRISMS );
2126   else
2127     methodFlags = int( ::SMESH_MeshEditor::HEXA_TO_2_PRISMS );
2128
2129   getEditor().SplitVolumes( elemFacets, int( methodFlags ));
2130   declareMeshModified( /*isReComputeSafe=*/true ); // it does not influence Compute()
2131
2132   TPythonDump() << this << ".SplitHexahedraIntoPrisms( "
2133                 << elems << ", "
2134                 << startHexPoint << ", "
2135                 << facetToSplitNormal<< ", "
2136                 << methodFlags<< ", "
2137                 << allDomains << " )";
2138
2139   SMESH_CATCH( SMESH::throwCorbaException );
2140 }
2141
2142 //================================================================================
2143 /*!
2144  * \brief Split bi-quadratic elements into linear ones without creation of additional nodes:
2145  *   - bi-quadratic triangle will be split into 3 linear quadrangles;
2146  *   - bi-quadratic quadrangle will be split into 4 linear quadrangles;
2147  *   - tri-quadratic hexahedron will be split into 8 linear hexahedra.
2148  *   Quadratic elements of lower dimension  adjacent to the split bi-quadratic element
2149  *   will be split in order to keep the mesh conformal.
2150  *  \param elems - elements to split
2151  */
2152 //================================================================================
2153
2154 void SMESH_MeshEditor_i::SplitBiQuadraticIntoLinear(const SMESH::ListOfIDSources& theElems)
2155   throw (SALOME::SALOME_Exception)
2156 {
2157   SMESH_TRY;
2158   initData();
2159
2160   TIDSortedElemSet elemSet;
2161   for ( size_t i = 0; i < theElems.length(); ++i )
2162   {
2163     SMESH::SMESH_IDSource_ptr elems = theElems[i].in();
2164     SMESH::SMESH_Mesh_var      mesh = elems->GetMesh();
2165     if ( mesh->GetId() != myMesh_i->GetId() )
2166       THROW_SALOME_CORBA_EXCEPTION("Wrong mesh of IDSource", SALOME::BAD_PARAM);
2167
2168     idSourceToSet( elems, getMeshDS(), elemSet, SMDSAbs_All );
2169   }
2170   getEditor().SplitBiQuadraticIntoLinear( elemSet );
2171
2172   declareMeshModified( /*isReComputeSafe=*/true ); // it does not influence Compute()
2173
2174   TPythonDump() << this << ".SplitBiQuadraticIntoLinear( "
2175                 << theElems << " )";
2176
2177   SMESH_CATCH( SMESH::throwCorbaException );
2178 }
2179
2180 //=======================================================================
2181 //function : Smooth
2182 //purpose  :
2183 //=======================================================================
2184
2185 CORBA::Boolean
2186 SMESH_MeshEditor_i::Smooth(const SMESH::long_array &              IDsOfElements,
2187                            const SMESH::long_array &              IDsOfFixedNodes,
2188                            CORBA::Long                            MaxNbOfIterations,
2189                            CORBA::Double                          MaxAspectRatio,
2190                            SMESH::SMESH_MeshEditor::Smooth_Method Method)
2191   throw (SALOME::SALOME_Exception)
2192 {
2193   return smooth( IDsOfElements, IDsOfFixedNodes, MaxNbOfIterations,
2194                  MaxAspectRatio, Method, false );
2195 }
2196
2197
2198 //=======================================================================
2199 //function : SmoothParametric
2200 //purpose  :
2201 //=======================================================================
2202
2203 CORBA::Boolean
2204 SMESH_MeshEditor_i::SmoothParametric(const SMESH::long_array &              IDsOfElements,
2205                                      const SMESH::long_array &              IDsOfFixedNodes,
2206                                      CORBA::Long                            MaxNbOfIterations,
2207                                      CORBA::Double                          MaxAspectRatio,
2208                                      SMESH::SMESH_MeshEditor::Smooth_Method Method)
2209   throw (SALOME::SALOME_Exception)
2210 {
2211   return smooth( IDsOfElements, IDsOfFixedNodes, MaxNbOfIterations,
2212                  MaxAspectRatio, Method, true );
2213 }
2214
2215
2216 //=======================================================================
2217 //function : SmoothObject
2218 //purpose  :
2219 //=======================================================================
2220
2221 CORBA::Boolean
2222 SMESH_MeshEditor_i::SmoothObject(SMESH::SMESH_IDSource_ptr              theObject,
2223                                  const SMESH::long_array &              IDsOfFixedNodes,
2224                                  CORBA::Long                            MaxNbOfIterations,
2225                                  CORBA::Double                          MaxAspectRatio,
2226                                  SMESH::SMESH_MeshEditor::Smooth_Method Method)
2227   throw (SALOME::SALOME_Exception)
2228 {
2229   return smoothObject (theObject, IDsOfFixedNodes, MaxNbOfIterations,
2230                        MaxAspectRatio, Method, false);
2231 }
2232
2233
2234 //=======================================================================
2235 //function : SmoothParametricObject
2236 //purpose  :
2237 //=======================================================================
2238
2239 CORBA::Boolean
2240 SMESH_MeshEditor_i::SmoothParametricObject(SMESH::SMESH_IDSource_ptr              theObject,
2241                                            const SMESH::long_array &              IDsOfFixedNodes,
2242                                            CORBA::Long                            MaxNbOfIterations,
2243                                            CORBA::Double                          MaxAspectRatio,
2244                                            SMESH::SMESH_MeshEditor::Smooth_Method Method)
2245   throw (SALOME::SALOME_Exception)
2246 {
2247   return smoothObject (theObject, IDsOfFixedNodes, MaxNbOfIterations,
2248                        MaxAspectRatio, Method, true);
2249 }
2250
2251
2252 //=============================================================================
2253 /*!
2254  *
2255  */
2256 //=============================================================================
2257
2258 CORBA::Boolean
2259 SMESH_MeshEditor_i::smooth(const SMESH::long_array &              IDsOfElements,
2260                            const SMESH::long_array &              IDsOfFixedNodes,
2261                            CORBA::Long                            MaxNbOfIterations,
2262                            CORBA::Double                          MaxAspectRatio,
2263                            SMESH::SMESH_MeshEditor::Smooth_Method Method,
2264                            bool                                   IsParametric)
2265   throw (SALOME::SALOME_Exception)
2266 {
2267   SMESH_TRY;
2268   initData();
2269
2270   SMESHDS_Mesh* aMesh = getMeshDS();
2271
2272   TIDSortedElemSet elements;
2273   arrayToSet(IDsOfElements, aMesh, elements, SMDSAbs_Face);
2274
2275   set<const SMDS_MeshNode*> fixedNodes;
2276   for (int i = 0; i < IDsOfFixedNodes.length(); i++) {
2277     CORBA::Long index = IDsOfFixedNodes[i];
2278     const SMDS_MeshNode * node = aMesh->FindNode(index);
2279     if ( node )
2280       fixedNodes.insert( node );
2281   }
2282   ::SMESH_MeshEditor::SmoothMethod method = ::SMESH_MeshEditor::LAPLACIAN;
2283   if ( Method != SMESH::SMESH_MeshEditor::LAPLACIAN_SMOOTH )
2284     method = ::SMESH_MeshEditor::CENTROIDAL;
2285
2286   getEditor().Smooth(elements, fixedNodes, method,
2287                   MaxNbOfIterations, MaxAspectRatio, IsParametric );
2288
2289   declareMeshModified( /*isReComputeSafe=*/true ); // does not prevent re-compute
2290
2291   // Update Python script
2292   TPythonDump() << "isDone = " << this << "."
2293                 << (IsParametric ? "SmoothParametric( " : "Smooth( ")
2294                 << IDsOfElements << ", "     << IDsOfFixedNodes << ", "
2295                 << TVar( MaxNbOfIterations ) << ", " << TVar( MaxAspectRatio ) << ", "
2296                 << "SMESH.SMESH_MeshEditor."
2297                 << ( Method == SMESH::SMESH_MeshEditor::CENTROIDAL_SMOOTH ?
2298                      "CENTROIDAL_SMOOTH )" : "LAPLACIAN_SMOOTH )");
2299
2300   return true;
2301
2302   SMESH_CATCH( SMESH::throwCorbaException );
2303   return 0;
2304 }
2305
2306 //=============================================================================
2307 /*!
2308  *
2309  */
2310 //=============================================================================
2311
2312 CORBA::Boolean
2313 SMESH_MeshEditor_i::smoothObject(SMESH::SMESH_IDSource_ptr              theObject,
2314                                  const SMESH::long_array &              IDsOfFixedNodes,
2315                                  CORBA::Long                            MaxNbOfIterations,
2316                                  CORBA::Double                          MaxAspectRatio,
2317                                  SMESH::SMESH_MeshEditor::Smooth_Method Method,
2318                                  bool                                   IsParametric)
2319   throw (SALOME::SALOME_Exception)
2320 {
2321   SMESH_TRY;
2322   initData();
2323
2324   TPythonDump aTPythonDump;  // suppress dump in smooth()
2325
2326   prepareIdSource( theObject );
2327   SMESH::long_array_var anElementsId = theObject->GetIDs();
2328   CORBA::Boolean isDone = smooth (anElementsId, IDsOfFixedNodes, MaxNbOfIterations,
2329                                   MaxAspectRatio, Method, IsParametric);
2330
2331   // Update Python script
2332   aTPythonDump << "isDone = " << this << "."
2333                << (IsParametric ? "SmoothParametricObject( " : "SmoothObject( ")
2334                << theObject << ", " << IDsOfFixedNodes << ", "
2335                << TVar( MaxNbOfIterations ) << ", " << TVar( MaxAspectRatio ) << ", "
2336                << "SMESH.SMESH_MeshEditor."
2337                << ( Method == SMESH::SMESH_MeshEditor::CENTROIDAL_SMOOTH ?
2338                     "CENTROIDAL_SMOOTH )" : "LAPLACIAN_SMOOTH )");
2339
2340   return isDone;
2341
2342   SMESH_CATCH( SMESH::throwCorbaException );
2343   return 0;
2344 }
2345
2346 //=============================================================================
2347 /*!
2348  *
2349  */
2350 //=============================================================================
2351
2352 void SMESH_MeshEditor_i::RenumberNodes()
2353   throw (SALOME::SALOME_Exception)
2354 {
2355   SMESH_TRY;
2356   // Update Python script
2357   TPythonDump() << this << ".RenumberNodes()";
2358
2359   getMeshDS()->Renumber( true );
2360
2361   SMESH_CATCH( SMESH::throwCorbaException );
2362 }
2363
2364 //=============================================================================
2365 /*!
2366  *
2367  */
2368 //=============================================================================
2369
2370 void SMESH_MeshEditor_i::RenumberElements()
2371   throw (SALOME::SALOME_Exception)
2372 {
2373   SMESH_TRY;
2374   // Update Python script
2375   TPythonDump() << this << ".RenumberElements()";
2376
2377   getMeshDS()->Renumber( false );
2378
2379   SMESH_CATCH( SMESH::throwCorbaException );
2380 }
2381
2382 //=======================================================================
2383 /*!
2384  * \brief Return groups by their IDs
2385  */
2386 //=======================================================================
2387
2388 SMESH::ListOfGroups* SMESH_MeshEditor_i::getGroups(const std::list<int>* groupIDs)
2389   throw (SALOME::SALOME_Exception)
2390 {
2391   SMESH_TRY;
2392   if ( !groupIDs )
2393     return 0;
2394   myMesh_i->CreateGroupServants();
2395   return myMesh_i->GetGroups( *groupIDs );
2396
2397   SMESH_CATCH( SMESH::throwCorbaException );
2398   return 0;
2399 }
2400
2401 //=======================================================================
2402 //function : RotationSweepObjects
2403 //purpose  :
2404 //=======================================================================
2405
2406 SMESH::ListOfGroups*
2407 SMESH_MeshEditor_i::RotationSweepObjects(const SMESH::ListOfIDSources & theNodes,
2408                                          const SMESH::ListOfIDSources & theEdges,
2409                                          const SMESH::ListOfIDSources & theFaces,
2410                                          const SMESH::AxisStruct &      theAxis,
2411                                          CORBA::Double                  theAngleInRadians,
2412                                          CORBA::Long                    theNbOfSteps,
2413                                          CORBA::Double                  theTolerance,
2414                                          const bool                     theMakeGroups)
2415   throw (SALOME::SALOME_Exception)
2416 {
2417   SMESH_TRY;
2418   initData();
2419
2420   TIDSortedElemSet elemsNodes[2];
2421   for ( int i = 0, nb = theNodes.length(); i < nb; ++i ) {
2422     SMDS_ElemIteratorPtr nIt = myMesh_i->GetElements( theNodes[i], SMESH::NODE );
2423     while ( nIt->more() ) elemsNodes[1].insert( nIt->next() );
2424   }
2425   for ( int i = 0, nb = theEdges.length(); i < nb; ++i )
2426     idSourceToSet( theEdges[i], getMeshDS(), elemsNodes[0], SMDSAbs_Edge );
2427   for ( int i = 0, nb = theFaces.length(); i < nb; ++i )
2428     idSourceToSet( theFaces[i], getMeshDS(), elemsNodes[0], SMDSAbs_Face );
2429
2430   TIDSortedElemSet* workElements = & elemsNodes[0], copyElements[2];
2431   bool              makeWalls=true;
2432   if ( myIsPreviewMode )
2433   {
2434     SMDSAbs_ElementType select = SMDSAbs_All, avoid = SMDSAbs_Volume;
2435     TPreviewMesh * tmpMesh = getPreviewMesh();
2436     tmpMesh->Copy( elemsNodes[0], copyElements[0], select, avoid );
2437     tmpMesh->Copy( elemsNodes[1], copyElements[1], select, avoid );
2438     workElements = & copyElements[0];
2439     //makeWalls = false; -- faces are needed for preview
2440   }
2441
2442   TPythonDump aPythonDump; // it is here to prevent dump of getGroups()
2443
2444   gp_Ax1 Ax1 (gp_Pnt( theAxis.x,  theAxis.y,  theAxis.z ),
2445               gp_Vec( theAxis.vx, theAxis.vy, theAxis.vz ));
2446
2447   ::SMESH_MeshEditor::PGroupIDs groupIds =
2448       getEditor().RotationSweep (workElements, Ax1, theAngleInRadians,
2449                                  theNbOfSteps, theTolerance, theMakeGroups, makeWalls);
2450
2451   SMESH::ListOfGroups * aGroups = theMakeGroups ? getGroups( groupIds.get()) : 0;
2452
2453   declareMeshModified( /*isReComputeSafe=*/true ); // does not influence Compute()
2454
2455   if ( !myIsPreviewMode )
2456   {
2457     dumpGroupsList( aPythonDump, aGroups );
2458     aPythonDump << this<< ".RotationSweepObjects( "
2459                 << theNodes                  << ", "
2460                 << theEdges                  << ", "
2461                 << theFaces                  << ", "
2462                 << theAxis                   << ", "
2463                 << TVar( theAngleInRadians ) << ", "
2464                 << TVar( theNbOfSteps      ) << ", "
2465                 << TVar( theTolerance      ) << ", "
2466                 << theMakeGroups             << " )";
2467   }
2468   else
2469   {
2470     getPreviewMesh()->Remove( SMDSAbs_Volume );
2471   }
2472
2473   return aGroups ? aGroups : new SMESH::ListOfGroups;
2474
2475   SMESH_CATCH( SMESH::throwCorbaException );
2476   return 0;
2477 }
2478
2479 namespace MeshEditor_I
2480 {
2481   /*!
2482    * \brief Structure used to pass extrusion parameters to ::SMESH_MeshEditor
2483    */
2484   struct ExtrusionParams : public ::SMESH_MeshEditor::ExtrusParam
2485   {
2486     bool myIsExtrusionByNormal;
2487
2488     static int makeFlags( CORBA::Boolean MakeGroups,
2489                           CORBA::Boolean ByAverageNormal = false,
2490                           CORBA::Boolean UseInputElemsOnly = false,
2491                           CORBA::Long    Flags = 0,
2492                           CORBA::Boolean MakeBoundary = true )
2493     {
2494       if ( MakeGroups       ) Flags |= ::SMESH_MeshEditor::EXTRUSION_FLAG_GROUPS;
2495       if ( ByAverageNormal  ) Flags |= ::SMESH_MeshEditor::EXTRUSION_FLAG_BY_AVG_NORMAL;
2496       if ( UseInputElemsOnly) Flags |= ::SMESH_MeshEditor::EXTRUSION_FLAG_USE_INPUT_ELEMS_ONLY;
2497       if ( MakeBoundary     ) Flags |= ::SMESH_MeshEditor::EXTRUSION_FLAG_BOUNDARY;
2498       return Flags;
2499     }
2500     // standard params
2501     ExtrusionParams(const SMESH::DirStruct &  theDir,
2502                     CORBA::Long               theNbOfSteps,
2503                     CORBA::Boolean            theMakeGroups):
2504       ::SMESH_MeshEditor::ExtrusParam ( gp_Vec( theDir.PS.x,
2505                                                 theDir.PS.y,
2506                                                 theDir.PS.z ),
2507                                         theNbOfSteps,
2508                                         makeFlags( theMakeGroups )),
2509       myIsExtrusionByNormal( false )
2510     {
2511     }
2512     // advanced params
2513     ExtrusionParams(const SMESH::DirStruct &  theDir,
2514                     CORBA::Long               theNbOfSteps,
2515                     CORBA::Boolean            theMakeGroups,
2516                     CORBA::Long               theExtrFlags,
2517                     CORBA::Double             theSewTolerance):
2518       ::SMESH_MeshEditor::ExtrusParam ( gp_Vec( theDir.PS.x,
2519                                                 theDir.PS.y,
2520                                                 theDir.PS.z ),
2521                                         theNbOfSteps,
2522                                         makeFlags( theMakeGroups, false, false,
2523                                                    theExtrFlags, false ),
2524                                         theSewTolerance ),
2525       myIsExtrusionByNormal( false )
2526     {
2527     }
2528     // params for extrusion by normal
2529     ExtrusionParams(CORBA::Double  theStepSize,
2530                     CORBA::Long    theNbOfSteps,
2531                     CORBA::Short   theDim,
2532                     CORBA::Boolean theByAverageNormal,
2533                     CORBA::Boolean theUseInputElemsOnly,
2534                     CORBA::Boolean theMakeGroups ):
2535       ::SMESH_MeshEditor::ExtrusParam ( theStepSize, 
2536                                         theNbOfSteps,
2537                                         makeFlags( theMakeGroups,
2538                                                    theByAverageNormal, theUseInputElemsOnly ),
2539                                         theDim),
2540       myIsExtrusionByNormal( true )
2541     {
2542     }
2543
2544     void SetNoGroups()
2545     {
2546       Flags() &= ~(::SMESH_MeshEditor::EXTRUSION_FLAG_GROUPS);
2547     }
2548   };
2549 }
2550
2551 //=======================================================================
2552 /*!
2553  * \brief Generate dim+1 elements by extrusion of elements along vector
2554  *  \param [in] edges - edges to extrude: a list including groups, sub-meshes or a mesh
2555  *  \param [in] faces - faces to extrude: a list including groups, sub-meshes or a mesh
2556  *  \param [in] nodes - nodes to extrude: a list including groups, sub-meshes or a mesh
2557  *  \param [in] stepVector - vector giving direction and distance of an extrusion step
2558  *  \param [in] nbOfSteps - number of elements to generate from one element
2559  *  \param [in] toMakeGroups - if true, new elements will be included into new groups
2560  *              corresponding to groups the input elements included in.
2561  *  \return ListOfGroups - new groups craeted if \a toMakeGroups is true
2562  */
2563 //=======================================================================
2564
2565 SMESH::ListOfGroups*
2566 SMESH_MeshEditor_i::ExtrusionSweepObjects(const SMESH::ListOfIDSources & theNodes,
2567                                           const SMESH::ListOfIDSources & theEdges,
2568                                           const SMESH::ListOfIDSources & theFaces,
2569                                           const SMESH::DirStruct &       theStepVector,
2570                                           CORBA::Long                    theNbOfSteps,
2571                                           CORBA::Boolean                 theToMakeGroups)
2572   throw (SALOME::SALOME_Exception)
2573 {
2574   SMESH_TRY;
2575   initData();
2576
2577   ExtrusionParams params( theStepVector, theNbOfSteps, theToMakeGroups );
2578
2579   TIDSortedElemSet elemsNodes[2];
2580   for ( int i = 0, nb = theNodes.length(); i < nb; ++i ) {
2581     SMDS_ElemIteratorPtr nIt = myMesh_i->GetElements( theNodes[i], SMESH::NODE );
2582     while ( nIt->more() ) elemsNodes[1].insert( nIt->next() );
2583   }
2584   for ( int i = 0, nb = theEdges.length(); i < nb; ++i )
2585     idSourceToSet( theEdges[i], getMeshDS(), elemsNodes[0], SMDSAbs_Edge );
2586   for ( int i = 0, nb = theFaces.length(); i < nb; ++i )
2587     idSourceToSet( theFaces[i], getMeshDS(), elemsNodes[0], SMDSAbs_Face );
2588
2589   TIDSortedElemSet* workElements = & elemsNodes[0], copyElements[2];
2590   SMDSAbs_ElementType previewType = SMDSAbs_All; //SMDSAbs_Face;
2591   if ( myIsPreviewMode )
2592   {
2593     // if ( (*elemsNodes.begin())->GetType() == SMDSAbs_Node )
2594     //   previewType = SMDSAbs_Edge;
2595
2596     SMDSAbs_ElementType select = SMDSAbs_All, avoid = SMDSAbs_Volume;
2597     TPreviewMesh * tmpMesh = getPreviewMesh( previewType );
2598     tmpMesh->Copy( elemsNodes[0], copyElements[0], select, avoid );
2599     tmpMesh->Copy( elemsNodes[1], copyElements[1], select, avoid );
2600     workElements = & copyElements[0];
2601
2602     params.SetNoGroups();
2603   }
2604   TPythonDump aPythonDump; // it is here to prevent dump of getGroups()
2605
2606   ::SMESH_MeshEditor::TTElemOfElemListMap aHistory;
2607   ::SMESH_MeshEditor::PGroupIDs groupIds =
2608       getEditor().ExtrusionSweep( workElements, params, aHistory );
2609
2610   SMESH::ListOfGroups * aGroups = theToMakeGroups ? getGroups( groupIds.get()) : 0;
2611
2612   declareMeshModified( /*isReComputeSafe=*/true ); // does not influence Compute()
2613
2614   if ( !myIsPreviewMode )
2615   {
2616     dumpGroupsList( aPythonDump, aGroups );
2617     aPythonDump << this<< ".ExtrusionSweepObjects( "
2618                 << theNodes             << ", "
2619                 << theEdges             << ", "
2620                 << theFaces             << ", "
2621                 << theStepVector        << ", "
2622                 << TVar( theNbOfSteps ) << ", "
2623                 << theToMakeGroups      << " )";
2624   }
2625   else
2626   {
2627     getPreviewMesh( previewType )->Remove( SMDSAbs_Volume );
2628   }
2629
2630   return aGroups ? aGroups : new SMESH::ListOfGroups;
2631
2632   SMESH_CATCH( SMESH::throwCorbaException );
2633   return 0;
2634 }
2635
2636 //=======================================================================
2637 //function : ExtrusionByNormal
2638 //purpose  :
2639 //=======================================================================
2640
2641 SMESH::ListOfGroups*
2642 SMESH_MeshEditor_i::ExtrusionByNormal(const SMESH::ListOfIDSources& objects,
2643                                       CORBA::Double                 stepSize,
2644                                       CORBA::Long                   nbOfSteps,
2645                                       CORBA::Boolean                byAverageNormal,
2646                                       CORBA::Boolean                useInputElemsOnly,
2647                                       CORBA::Boolean                makeGroups,
2648                                       CORBA::Short                  dim)
2649   throw (SALOME::SALOME_Exception)
2650 {
2651   SMESH_TRY;
2652   initData();
2653
2654   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
2655
2656   ExtrusionParams params( stepSize, nbOfSteps, dim,
2657                           byAverageNormal, useInputElemsOnly, makeGroups );
2658
2659   SMDSAbs_ElementType elemType = ( dim == 1 ? SMDSAbs_Edge : SMDSAbs_Face );
2660   if ( objects.length() > 0 && !SMESH::DownCast<SMESH_Mesh_i*>( objects[0] ))
2661   {
2662     SMESH::array_of_ElementType_var elemTypes = objects[0]->GetTypes();
2663     if (( elemTypes->length() == 1 ) &&
2664         ( elemTypes[0] == SMESH::EDGE || elemTypes[0] == SMESH::FACE ))
2665       elemType = ( SMDSAbs_ElementType ) elemTypes[0];
2666   }
2667
2668   TIDSortedElemSet elemsNodes[2];
2669   for ( int i = 0, nb = objects.length(); i < nb; ++i )
2670     idSourceToSet( objects[i], getMeshDS(), elemsNodes[0], elemType );
2671
2672   TIDSortedElemSet* workElements = & elemsNodes[0], copyElements[2];
2673   SMDSAbs_ElementType previewType = SMDSAbs_Face;
2674   if ( myIsPreviewMode )
2675   {
2676     SMDSAbs_ElementType select = SMDSAbs_All, avoid = SMDSAbs_Volume;
2677     TPreviewMesh * tmpMesh = getPreviewMesh( previewType );
2678     tmpMesh->Copy( elemsNodes[0], copyElements[0], select, avoid );
2679     workElements = & copyElements[0];
2680
2681     params.SetNoGroups();
2682   }
2683
2684   ::SMESH_MeshEditor::TTElemOfElemListMap aHistory;
2685   ::SMESH_MeshEditor::PGroupIDs groupIds =
2686       getEditor().ExtrusionSweep( workElements, params, aHistory );
2687
2688   SMESH::ListOfGroups * aGroups = makeGroups ? getGroups( groupIds.get()) : 0;
2689
2690   if (!myIsPreviewMode) {
2691     dumpGroupsList(aPythonDump, aGroups);
2692     aPythonDump << this << ".ExtrusionByNormal( " << objects
2693                 << ", " << TVar( stepSize )
2694                 << ", " << TVar( nbOfSteps )
2695                 << ", " << byAverageNormal
2696                 << ", " << useInputElemsOnly
2697                 << ", " << makeGroups
2698                 << ", " << dim
2699                 << " )";
2700   }
2701   else
2702   {
2703     getPreviewMesh( previewType )->Remove( SMDSAbs_Volume );
2704   }
2705
2706   declareMeshModified( /*isReComputeSafe=*/true ); // does not influence Compute()
2707
2708   return aGroups ? aGroups : new SMESH::ListOfGroups;
2709
2710   SMESH_CATCH( SMESH::throwCorbaException );
2711   return 0;
2712 }
2713
2714 //=======================================================================
2715 //function : AdvancedExtrusion
2716 //purpose  :
2717 //=======================================================================
2718
2719 SMESH::ListOfGroups*
2720 SMESH_MeshEditor_i::AdvancedExtrusion(const SMESH::long_array & theIDsOfElements,
2721                                       const SMESH::DirStruct &  theStepVector,
2722                                       CORBA::Long               theNbOfSteps,
2723                                       CORBA::Long               theExtrFlags,
2724                                       CORBA::Double             theSewTolerance,
2725                                       CORBA::Boolean            theMakeGroups)
2726   throw (SALOME::SALOME_Exception)
2727 {
2728   SMESH_TRY;
2729   initData();
2730
2731   TPythonDump aPythonDump; // it is here to prevent dump of getGroups()
2732
2733   ExtrusionParams params( theStepVector, theNbOfSteps, theMakeGroups,
2734                           theExtrFlags, theSewTolerance );
2735
2736   TIDSortedElemSet elemsNodes[2];
2737   arrayToSet( theIDsOfElements, getMeshDS(), elemsNodes[0] );
2738
2739   ::SMESH_MeshEditor::TTElemOfElemListMap aHistory;
2740   ::SMESH_MeshEditor::PGroupIDs groupIds =
2741       getEditor().ExtrusionSweep( elemsNodes, params, aHistory );
2742
2743   SMESH::ListOfGroups * aGroups = theMakeGroups ? getGroups( groupIds.get()) : 0;
2744
2745   declareMeshModified( /*isReComputeSafe=*/true ); // does not influence Compute()
2746
2747   if ( !myIsPreviewMode ) {
2748     dumpGroupsList(aPythonDump, aGroups);
2749     aPythonDump << this << ".AdvancedExtrusion( "
2750                 << theIDsOfElements << ", "
2751                 << theStepVector << ", "
2752                 << theNbOfSteps << ", "
2753                 << theExtrFlags << ", "
2754                 << theSewTolerance << ", "
2755                 << theMakeGroups << " )";
2756   }
2757   else
2758   {
2759     getPreviewMesh()->Remove( SMDSAbs_Volume );
2760   }
2761
2762   return aGroups ? aGroups : new SMESH::ListOfGroups;
2763
2764   SMESH_CATCH( SMESH::throwCorbaException );
2765   return 0;
2766 }
2767
2768 //================================================================================
2769 /*!
2770  * \brief Convert extrusion error to IDL enum
2771  */
2772 //================================================================================
2773
2774 namespace
2775 {
2776 #define RETCASE(enm) case ::SMESH_MeshEditor::enm: return SMESH::SMESH_MeshEditor::enm;
2777
2778   SMESH::SMESH_MeshEditor::Extrusion_Error convExtrError( ::SMESH_MeshEditor::Extrusion_Error e )
2779   {
2780     switch ( e ) {
2781       RETCASE( EXTR_OK );
2782       RETCASE( EXTR_NO_ELEMENTS );
2783       RETCASE( EXTR_PATH_NOT_EDGE );
2784       RETCASE( EXTR_BAD_PATH_SHAPE );
2785       RETCASE( EXTR_BAD_STARTING_NODE );
2786       RETCASE( EXTR_BAD_ANGLES_NUMBER );
2787       RETCASE( EXTR_CANT_GET_TANGENT );
2788     }
2789     return SMESH::SMESH_MeshEditor::EXTR_OK;
2790   }
2791 }
2792
2793 //=======================================================================
2794 //function : extrusionAlongPath
2795 //purpose  :
2796 //=======================================================================
2797 SMESH::ListOfGroups*
2798 SMESH_MeshEditor_i::ExtrusionAlongPathObjects(const SMESH::ListOfIDSources & theNodes,
2799                                               const SMESH::ListOfIDSources & theEdges,
2800                                               const SMESH::ListOfIDSources & theFaces,
2801                                               SMESH::SMESH_IDSource_ptr      thePathMesh,
2802                                               GEOM::GEOM_Object_ptr          thePathShape,
2803                                               CORBA::Long                    theNodeStart,
2804                                               CORBA::Boolean                 theHasAngles,
2805                                               const SMESH::double_array &    theAngles,
2806                                               CORBA::Boolean                 theLinearVariation,
2807                                               CORBA::Boolean                 theHasRefPoint,
2808                                               const SMESH::PointStruct &     theRefPoint,
2809                                               bool                           theMakeGroups,
2810                                               SMESH::SMESH_MeshEditor::Extrusion_Error& theError)
2811   throw (SALOME::SALOME_Exception)
2812 {
2813   SMESH_TRY;
2814   initData();
2815
2816   SMESH::ListOfGroups_var aGroups = new SMESH::ListOfGroups;
2817
2818   theError = SMESH::SMESH_MeshEditor::EXTR_BAD_PATH_SHAPE;
2819   if ( thePathMesh->_is_nil() )
2820     return aGroups._retn();
2821
2822   // get a sub-mesh
2823   SMESH_subMesh* aSubMesh = 0;
2824   SMESH_Mesh_i* aMeshImp = SMESH::DownCast<SMESH_Mesh_i*>( thePathMesh );
2825   if ( thePathShape->_is_nil() )
2826   {
2827     // thePathMesh should be either a sub-mesh or a mesh with 1D elements only
2828     if ( SMESH_subMesh_i* sm = SMESH::DownCast<SMESH_subMesh_i*>( thePathMesh ))
2829     {
2830       SMESH::SMESH_Mesh_var mesh = thePathMesh->GetMesh();
2831       aMeshImp = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
2832       if ( !aMeshImp ) return aGroups._retn();
2833       aSubMesh = aMeshImp->GetImpl().GetSubMeshContaining( sm->GetId() );
2834       if ( !aSubMesh ) return aGroups._retn();
2835     }
2836     else if ( !aMeshImp ||
2837               aMeshImp->NbEdges() != aMeshImp->NbElements() )
2838     {
2839       return aGroups._retn();
2840     }
2841   }
2842   else
2843   {
2844     if ( !aMeshImp ) return aGroups._retn();
2845     TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( thePathShape );
2846     aSubMesh = aMeshImp->GetImpl().GetSubMesh( aShape );
2847     if ( !aSubMesh || !aSubMesh->GetSubMeshDS() )
2848       return aGroups._retn();
2849   }
2850
2851   SMDS_MeshNode* nodeStart =
2852     (SMDS_MeshNode*)aMeshImp->GetImpl().GetMeshDS()->FindNode(theNodeStart);
2853   if ( !nodeStart ) {
2854     theError = SMESH::SMESH_MeshEditor::EXTR_BAD_STARTING_NODE;
2855     return aGroups._retn();
2856   }
2857
2858   TIDSortedElemSet elemsNodes[2];
2859   for ( int i = 0, nb = theNodes.length(); i < nb; ++i ) {
2860     SMDS_ElemIteratorPtr nIt = myMesh_i->GetElements( theNodes[i], SMESH::NODE );
2861     while ( nIt->more() ) elemsNodes[1].insert( nIt->next() );
2862   }
2863   for ( int i = 0, nb = theEdges.length(); i < nb; ++i )
2864     idSourceToSet( theEdges[i], getMeshDS(), elemsNodes[0], SMDSAbs_Edge );
2865   for ( int i = 0, nb = theFaces.length(); i < nb; ++i )
2866     idSourceToSet( theFaces[i], getMeshDS(), elemsNodes[0], SMDSAbs_Face );
2867
2868   list<double> angles;
2869   for (int i = 0; i < theAngles.length(); i++) {
2870     angles.push_back( theAngles[i] );
2871   }
2872
2873   gp_Pnt refPnt( theRefPoint.x, theRefPoint.y, theRefPoint.z );
2874
2875   int nbOldGroups = myMesh->NbGroup();
2876
2877   TIDSortedElemSet* workElements = & elemsNodes[0], copyElements[2];
2878   if ( myIsPreviewMode )
2879   {
2880     SMDSAbs_ElementType select = SMDSAbs_All, avoid = SMDSAbs_Volume;
2881     TPreviewMesh * tmpMesh = getPreviewMesh();
2882     tmpMesh->Copy( elemsNodes[0], copyElements[0], select, avoid );
2883     tmpMesh->Copy( elemsNodes[1], copyElements[1], select, avoid );
2884     workElements = & copyElements[0];
2885     theMakeGroups = false;
2886   }
2887
2888   ::SMESH_MeshEditor::Extrusion_Error error;
2889   if ( !aSubMesh )
2890     error = getEditor().ExtrusionAlongTrack( workElements, &(aMeshImp->GetImpl()), nodeStart,
2891                                              theHasAngles, angles, theLinearVariation,
2892                                              theHasRefPoint, refPnt, theMakeGroups );
2893   else
2894     error = getEditor().ExtrusionAlongTrack( workElements, aSubMesh, nodeStart,
2895                                              theHasAngles, angles, theLinearVariation,
2896                                              theHasRefPoint, refPnt, theMakeGroups );
2897
2898   declareMeshModified( /*isReComputeSafe=*/true );
2899   theError = convExtrError( error );
2900
2901   TPythonDump aPythonDump; // it is here to prevent dump of getGroups()
2902   if ( theMakeGroups ) {
2903     list<int> groupIDs = myMesh->GetGroupIds();
2904     list<int>::iterator newBegin = groupIDs.begin();
2905     std::advance( newBegin, nbOldGroups ); // skip old groups
2906     groupIDs.erase( groupIDs.begin(), newBegin );
2907     aGroups = getGroups( & groupIDs );
2908     if ( ! &aGroups.in() ) aGroups = new SMESH::ListOfGroups;
2909   }
2910
2911   if ( !myIsPreviewMode ) {
2912     aPythonDump << "(" << aGroups << ", error) = "
2913                 << this << ".ExtrusionAlongPathObjects( "
2914                 << theNodes            << ", "
2915                 << theEdges            << ", "
2916                 << theFaces            << ", "
2917                 << thePathMesh         << ", "
2918                 << thePathShape        << ", "
2919                 << theNodeStart        << ", "
2920                 << theHasAngles        << ", "
2921                 << theAngles           << ", "
2922                 << theLinearVariation  << ", "
2923                 << theHasRefPoint      << ", "
2924                 << "SMESH.PointStruct( "
2925                 << ( theHasRefPoint ? theRefPoint.x : 0 ) << ", "
2926                 << ( theHasRefPoint ? theRefPoint.y : 0 ) << ", "
2927                 << ( theHasRefPoint ? theRefPoint.z : 0 ) << " ), "
2928                 << theMakeGroups       << " )";
2929   }
2930   else
2931   {
2932     getPreviewMesh()->Remove( SMDSAbs_Volume );
2933   }
2934
2935   return aGroups._retn();
2936
2937   SMESH_CATCH( SMESH::throwCorbaException );
2938   return 0;
2939 }
2940
2941 //================================================================================
2942 /*!
2943  * \brief Compute rotation angles for ExtrusionAlongPath as linear variation
2944  * of given angles along path steps
2945  * \param PathMesh mesh containing a 1D sub-mesh on the edge, along
2946  *                which proceeds the extrusion
2947  * \param PathShape is shape(edge); as the mesh can be complex, the edge
2948  *                 is used to define the sub-mesh for the path
2949  */
2950 //================================================================================
2951
2952 SMESH::double_array*
2953 SMESH_MeshEditor_i::LinearAnglesVariation(SMESH::SMESH_Mesh_ptr       thePathMesh,
2954                                           GEOM::GEOM_Object_ptr       thePathShape,
2955                                           const SMESH::double_array & theAngles)
2956 {
2957   SMESH::double_array_var aResult = new SMESH::double_array();
2958   int nbAngles = theAngles.length();
2959   if ( nbAngles > 0 && !thePathMesh->_is_nil() && !thePathShape->_is_nil() )
2960   {
2961     SMESH_Mesh_i* aMeshImp = SMESH::DownCast<SMESH_Mesh_i*>( thePathMesh );
2962     TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( thePathShape );
2963     SMESH_subMesh* aSubMesh = aMeshImp->GetImpl().GetSubMesh( aShape );
2964     if ( !aSubMesh || !aSubMesh->GetSubMeshDS())
2965       return aResult._retn();
2966     int nbSteps = aSubMesh->GetSubMeshDS()->NbElements();
2967     if ( nbSteps == nbAngles )
2968     {
2969       aResult.inout() = theAngles;
2970     }
2971     else
2972     {
2973       aResult->length( nbSteps );
2974       double rAn2St = double( nbAngles ) / double( nbSteps );
2975       double angPrev = 0, angle;
2976       for ( int iSt = 0; iSt < nbSteps; ++iSt )
2977       {
2978         double angCur = rAn2St * ( iSt+1 );
2979         double angCurFloor  = floor( angCur );
2980         double angPrevFloor = floor( angPrev );
2981         if ( angPrevFloor == angCurFloor )
2982           angle = rAn2St * theAngles[ int( angCurFloor ) ];
2983         else
2984         {
2985           int iP = int( angPrevFloor );
2986           double angPrevCeil = ceil(angPrev);
2987           angle = ( angPrevCeil - angPrev ) * theAngles[ iP ];
2988
2989           int iC = int( angCurFloor );
2990           if ( iC < nbAngles )
2991             angle += ( angCur - angCurFloor ) * theAngles[ iC ];
2992
2993           iP = int( angPrevCeil );
2994           while ( iC-- > iP )
2995             angle += theAngles[ iC ];
2996         }
2997         aResult[ iSt ] = angle;
2998         angPrev = angCur;
2999       }
3000     }
3001   }
3002   // Update Python script
3003   TPythonDump() << "rotAngles = " << theAngles;
3004   TPythonDump() << "rotAngles = " << this << ".LinearAnglesVariation( "
3005                 << thePathMesh  << ", "
3006                 << thePathShape << ", "
3007                 << "rotAngles )";
3008
3009   return aResult._retn();
3010 }
3011
3012 //=======================================================================
3013 //function : mirror
3014 //purpose  :
3015 //=======================================================================
3016
3017 SMESH::ListOfGroups*
3018 SMESH_MeshEditor_i::mirror(TIDSortedElemSet &                  theElements,
3019                            const SMESH::AxisStruct &           theAxis,
3020                            SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
3021                            CORBA::Boolean                      theCopy,
3022                            bool                                theMakeGroups,
3023                            ::SMESH_Mesh*                       theTargetMesh)
3024   throw (SALOME::SALOME_Exception)
3025 {
3026   SMESH_TRY;
3027   initData();
3028
3029   gp_Pnt P ( theAxis.x, theAxis.y, theAxis.z );
3030   gp_Vec V ( theAxis.vx, theAxis.vy, theAxis.vz );
3031
3032   if ( theTargetMesh )
3033     theCopy = false;
3034
3035   gp_Trsf aTrsf;
3036   switch ( theMirrorType ) {
3037   case  SMESH::SMESH_MeshEditor::POINT:
3038     aTrsf.SetMirror( P );
3039     break;
3040   case  SMESH::SMESH_MeshEditor::AXIS:
3041     aTrsf.SetMirror( gp_Ax1( P, V ));
3042     break;
3043   default:
3044     aTrsf.SetMirror( gp_Ax2( P, V ));
3045   }
3046
3047   TIDSortedElemSet  copyElements;
3048   TIDSortedElemSet* workElements = & theElements;
3049
3050   if ( myIsPreviewMode )
3051   {
3052     TPreviewMesh * tmpMesh = getPreviewMesh();
3053     tmpMesh->Copy( theElements, copyElements);
3054     if ( !theCopy && !theTargetMesh )
3055     {
3056       TIDSortedElemSet elemsAround, elemsAroundCopy;
3057       getElementsAround( theElements, getMeshDS(), elemsAround );
3058       tmpMesh->Copy( elemsAround, elemsAroundCopy);
3059     }
3060     workElements = & copyElements;
3061     theMakeGroups = false;
3062   }
3063
3064   ::SMESH_MeshEditor::PGroupIDs groupIds =
3065       getEditor().Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
3066
3067   if ( theCopy && !myIsPreviewMode)
3068   {
3069     if ( theTargetMesh )
3070     {
3071       theTargetMesh->GetMeshDS()->Modified();
3072     }
3073     else
3074     {
3075       declareMeshModified( /*isReComputeSafe=*/false );
3076     }
3077   }
3078   return theMakeGroups ? getGroups(groupIds.get()) : 0;
3079
3080   SMESH_CATCH( SMESH::throwCorbaException );
3081   return 0;
3082 }
3083
3084 //=======================================================================
3085 //function : Mirror
3086 //purpose  :
3087 //=======================================================================
3088
3089 void SMESH_MeshEditor_i::Mirror(const SMESH::long_array &           theIDsOfElements,
3090                                 const SMESH::AxisStruct &           theAxis,
3091                                 SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
3092                                 CORBA::Boolean                      theCopy)
3093   throw (SALOME::SALOME_Exception)
3094 {
3095   if ( !myIsPreviewMode ) {
3096     TPythonDump() << this << ".Mirror( "
3097                   << theIDsOfElements              << ", "
3098                   << theAxis                       << ", "
3099                   << mirrorTypeName(theMirrorType) << ", "
3100                   << theCopy                       << " )";
3101   }
3102   if ( theIDsOfElements.length() > 0 )
3103   {
3104     TIDSortedElemSet elements;
3105     arrayToSet(theIDsOfElements, getMeshDS(), elements);
3106     mirror(elements, theAxis, theMirrorType, theCopy, false);
3107   }
3108 }
3109
3110
3111 //=======================================================================
3112 //function : MirrorObject
3113 //purpose  :
3114 //=======================================================================
3115
3116 void SMESH_MeshEditor_i::MirrorObject(SMESH::SMESH_IDSource_ptr           theObject,
3117                                       const SMESH::AxisStruct &           theAxis,
3118                                       SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
3119                                       CORBA::Boolean                      theCopy)
3120   throw (SALOME::SALOME_Exception)
3121 {
3122   if ( !myIsPreviewMode ) {
3123     TPythonDump() << this << ".MirrorObject( "
3124                   << theObject                     << ", "
3125                   << theAxis                       << ", "
3126                   << mirrorTypeName(theMirrorType) << ", "
3127                   << theCopy                       << " )";
3128   }
3129   TIDSortedElemSet elements;
3130
3131   bool emptyIfIsMesh = myIsPreviewMode ? false : true;
3132
3133   if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
3134     mirror(elements, theAxis, theMirrorType, theCopy, false);
3135 }
3136
3137 //=======================================================================
3138 //function : MirrorMakeGroups
3139 //purpose  :
3140 //=======================================================================
3141
3142 SMESH::ListOfGroups*
3143 SMESH_MeshEditor_i::MirrorMakeGroups(const SMESH::long_array&            theIDsOfElements,
3144                                      const SMESH::AxisStruct&            theMirror,
3145                                      SMESH::SMESH_MeshEditor::MirrorType theMirrorType)
3146   throw (SALOME::SALOME_Exception)
3147 {
3148   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
3149
3150   SMESH::ListOfGroups * aGroups = 0;
3151   if ( theIDsOfElements.length() > 0 )
3152   {
3153     TIDSortedElemSet elements;
3154     arrayToSet(theIDsOfElements, getMeshDS(), elements);
3155     aGroups = mirror(elements, theMirror, theMirrorType, true, true);
3156   }
3157   if (!myIsPreviewMode) {
3158     dumpGroupsList(aPythonDump, aGroups);
3159     aPythonDump << this << ".MirrorMakeGroups( "
3160                 << theIDsOfElements              << ", "
3161                 << theMirror                     << ", "
3162                 << mirrorTypeName(theMirrorType) << " )";
3163   }
3164   return aGroups;
3165 }
3166
3167 //=======================================================================
3168 //function : MirrorObjectMakeGroups
3169 //purpose  :
3170 //=======================================================================
3171
3172 SMESH::ListOfGroups*
3173 SMESH_MeshEditor_i::MirrorObjectMakeGroups(SMESH::SMESH_IDSource_ptr           theObject,
3174                                            const SMESH::AxisStruct&            theMirror,
3175                                            SMESH::SMESH_MeshEditor::MirrorType theMirrorType)
3176   throw (SALOME::SALOME_Exception)
3177 {
3178   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
3179
3180   SMESH::ListOfGroups * aGroups = 0;
3181   TIDSortedElemSet elements;
3182   if ( idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
3183     aGroups = mirror(elements, theMirror, theMirrorType, true, true);
3184
3185   if (!myIsPreviewMode)
3186   {
3187     dumpGroupsList(aPythonDump,aGroups);
3188     aPythonDump << this << ".MirrorObjectMakeGroups( "
3189                 << theObject                     << ", "
3190                 << theMirror                     << ", "
3191                 << mirrorTypeName(theMirrorType) << " )";
3192   }
3193   return aGroups;
3194 }
3195
3196 //=======================================================================
3197 //function : MirrorMakeMesh
3198 //purpose  :
3199 //=======================================================================
3200
3201 SMESH::SMESH_Mesh_ptr
3202 SMESH_MeshEditor_i::MirrorMakeMesh(const SMESH::long_array&            theIDsOfElements,
3203                                    const SMESH::AxisStruct&            theMirror,
3204                                    SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
3205                                    CORBA::Boolean                      theCopyGroups,
3206                                    const char*                         theMeshName)
3207   throw (SALOME::SALOME_Exception)
3208 {
3209   SMESH_Mesh_i* mesh_i;
3210   SMESH::SMESH_Mesh_var mesh;
3211   { // open new scope to dump "MakeMesh" command
3212     // and then "GetGroups" using SMESH_Mesh::GetGroups()
3213
3214     TPythonDump pydump; // to prevent dump at mesh creation
3215
3216     mesh = makeMesh( theMeshName );
3217     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
3218     if (mesh_i && theIDsOfElements.length() > 0 )
3219     {
3220       TIDSortedElemSet elements;
3221       arrayToSet(theIDsOfElements, getMeshDS(), elements);
3222       mirror(elements, theMirror, theMirrorType,
3223              false, theCopyGroups, & mesh_i->GetImpl());
3224       mesh_i->CreateGroupServants();
3225     }
3226
3227     if (!myIsPreviewMode) {
3228       pydump << mesh << " = " << this << ".MirrorMakeMesh( "
3229              << theIDsOfElements              << ", "
3230              << theMirror                     << ", "
3231              << mirrorTypeName(theMirrorType) << ", "
3232              << theCopyGroups                 << ", '"
3233              << theMeshName                   << "' )";
3234     }
3235   }
3236
3237   //dump "GetGroups"
3238   if (!myIsPreviewMode && mesh_i)
3239     mesh_i->GetGroups();
3240
3241   return mesh._retn();
3242 }
3243
3244 //=======================================================================
3245 //function : MirrorObjectMakeMesh
3246 //purpose  :
3247 //=======================================================================
3248
3249 SMESH::SMESH_Mesh_ptr
3250 SMESH_MeshEditor_i::MirrorObjectMakeMesh(SMESH::SMESH_IDSource_ptr           theObject,
3251                                          const SMESH::AxisStruct&            theMirror,
3252                                          SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
3253                                          CORBA::Boolean                      theCopyGroups,
3254                                          const char*                         theMeshName)
3255   throw (SALOME::SALOME_Exception)
3256 {
3257   SMESH_Mesh_i* mesh_i;
3258   SMESH::SMESH_Mesh_var mesh;
3259   { // open new scope to dump "MakeMesh" command
3260     // and then "GetGroups" using SMESH_Mesh::GetGroups()
3261
3262     TPythonDump pydump; // to prevent dump at mesh creation
3263
3264     mesh = makeMesh( theMeshName );
3265     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
3266     TIDSortedElemSet elements;
3267     if ( mesh_i &&
3268          idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
3269     {
3270       mirror(elements, theMirror, theMirrorType,
3271              false, theCopyGroups, & mesh_i->GetImpl());
3272       mesh_i->CreateGroupServants();
3273     }
3274     if (!myIsPreviewMode) {
3275       pydump << mesh << " = " << this << ".MirrorObjectMakeMesh( "
3276              << theObject                     << ", "
3277              << theMirror                     << ", "
3278              << mirrorTypeName(theMirrorType) << ", "
3279              << theCopyGroups                 << ", '"
3280              << theMeshName                   << "' )";
3281     }
3282   }
3283
3284   //dump "GetGroups"
3285   if (!myIsPreviewMode && mesh_i)
3286     mesh_i->GetGroups();
3287
3288   return mesh._retn();
3289 }
3290
3291 //=======================================================================
3292 //function : translate
3293 //purpose  :
3294 //=======================================================================
3295
3296 SMESH::ListOfGroups*
3297 SMESH_MeshEditor_i::translate(TIDSortedElemSet        & theElements,
3298                               const SMESH::DirStruct &  theVector,
3299                               CORBA::Boolean            theCopy,
3300                               bool                      theMakeGroups,
3301                               ::SMESH_Mesh*             theTargetMesh)
3302   throw (SALOME::SALOME_Exception)
3303 {
3304   SMESH_TRY;
3305   initData();
3306
3307   if ( theTargetMesh )
3308     theCopy = false;
3309
3310   gp_Trsf aTrsf;
3311   const SMESH::PointStruct * P = &theVector.PS;
3312   aTrsf.SetTranslation( gp_Vec( P->x, P->y, P->z ));
3313
3314   TIDSortedElemSet  copyElements;
3315   TIDSortedElemSet* workElements = &theElements;
3316
3317   if ( myIsPreviewMode )
3318   {
3319     TPreviewMesh * tmpMesh = getPreviewMesh();
3320     tmpMesh->Copy( theElements, copyElements);
3321     if ( !theCopy && !theTargetMesh )
3322     {
3323       TIDSortedElemSet elemsAround, elemsAroundCopy;
3324       getElementsAround( theElements, getMeshDS(), elemsAround );
3325       tmpMesh->Copy( elemsAround, elemsAroundCopy);
3326     }
3327     workElements = & copyElements;
3328     theMakeGroups = false;
3329   }
3330
3331   ::SMESH_MeshEditor::PGroupIDs groupIds =
3332       getEditor().Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
3333
3334   if ( theCopy && !myIsPreviewMode )
3335   {
3336     if ( theTargetMesh )
3337     {
3338       theTargetMesh->GetMeshDS()->Modified();
3339     }
3340     else
3341     {
3342       declareMeshModified( /*isReComputeSafe=*/false );
3343     }
3344   }
3345
3346   return theMakeGroups ? getGroups(groupIds.get()) : 0;
3347
3348   SMESH_CATCH( SMESH::throwCorbaException );
3349   return 0;
3350 }
3351
3352 //=======================================================================
3353 //function : Translate
3354 //purpose  :
3355 //=======================================================================
3356
3357 void SMESH_MeshEditor_i::Translate(const SMESH::long_array & theIDsOfElements,
3358                                    const SMESH::DirStruct &  theVector,
3359                                    CORBA::Boolean            theCopy)
3360   throw (SALOME::SALOME_Exception)
3361 {
3362   if (!myIsPreviewMode) {
3363     TPythonDump() << this << ".Translate( "
3364                   << theIDsOfElements << ", "
3365                   << theVector        << ", "
3366                   << theCopy          << " )";
3367   }
3368   if (theIDsOfElements.length()) {
3369     TIDSortedElemSet elements;
3370     arrayToSet(theIDsOfElements, getMeshDS(), elements);
3371     translate(elements, theVector, theCopy, false);
3372   }
3373 }
3374
3375 //=======================================================================
3376 //function : TranslateObject
3377 //purpose  :
3378 //=======================================================================
3379
3380 void SMESH_MeshEditor_i::TranslateObject(SMESH::SMESH_IDSource_ptr theObject,
3381                                          const SMESH::DirStruct &  theVector,
3382                                          CORBA::Boolean            theCopy)
3383   throw (SALOME::SALOME_Exception)
3384 {
3385   if (!myIsPreviewMode) {
3386     TPythonDump() << this << ".TranslateObject( "
3387                   << theObject << ", "
3388                   << theVector << ", "
3389                   << theCopy   << " )";
3390   }
3391   TIDSortedElemSet elements;
3392
3393   bool emptyIfIsMesh = myIsPreviewMode ? false : true;
3394
3395   if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
3396     translate(elements, theVector, theCopy, false);
3397 }
3398
3399 //=======================================================================
3400 //function : TranslateMakeGroups
3401 //purpose  :
3402 //=======================================================================
3403
3404 SMESH::ListOfGroups*
3405 SMESH_MeshEditor_i::TranslateMakeGroups(const SMESH::long_array& theIDsOfElements,
3406                                         const SMESH::DirStruct&  theVector)
3407   throw (SALOME::SALOME_Exception)
3408 {
3409   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
3410
3411   SMESH::ListOfGroups * aGroups = 0;
3412   if (theIDsOfElements.length()) {
3413     TIDSortedElemSet elements;
3414     arrayToSet(theIDsOfElements, getMeshDS(), elements);
3415     aGroups = translate(elements,theVector,true,true);
3416   }
3417   if (!myIsPreviewMode) {
3418     dumpGroupsList(aPythonDump, aGroups);
3419     aPythonDump << this << ".TranslateMakeGroups( "
3420                 << theIDsOfElements << ", "
3421                 << theVector        << " )";
3422   }
3423   return aGroups;
3424 }
3425
3426 //=======================================================================
3427 //function : TranslateObjectMakeGroups
3428 //purpose  :
3429 //=======================================================================
3430
3431 SMESH::ListOfGroups*
3432 SMESH_MeshEditor_i::TranslateObjectMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
3433                                               const SMESH::DirStruct&   theVector)
3434   throw (SALOME::SALOME_Exception)
3435 {
3436   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
3437
3438   SMESH::ListOfGroups * aGroups = 0;
3439   TIDSortedElemSet elements;
3440   if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
3441     aGroups = translate(elements, theVector, true, true);
3442
3443   if (!myIsPreviewMode) {
3444     dumpGroupsList(aPythonDump, aGroups);
3445     aPythonDump << this << ".TranslateObjectMakeGroups( "
3446                 << theObject << ", "
3447                 << theVector << " )";
3448   }
3449   return aGroups;
3450 }
3451
3452 //=======================================================================
3453 //function : TranslateMakeMesh
3454 //purpose  :
3455 //=======================================================================
3456
3457 SMESH::SMESH_Mesh_ptr
3458 SMESH_MeshEditor_i::TranslateMakeMesh(const SMESH::long_array& theIDsOfElements,
3459                                       const SMESH::DirStruct&  theVector,
3460                                       CORBA::Boolean           theCopyGroups,
3461                                       const char*              theMeshName)
3462   throw (SALOME::SALOME_Exception)
3463 {
3464   SMESH_Mesh_i* mesh_i;
3465   SMESH::SMESH_Mesh_var mesh;
3466
3467   { // open new scope to dump "MakeMesh" command
3468     // and then "GetGroups" using SMESH_Mesh::GetGroups()
3469
3470     TPythonDump pydump; // to prevent dump at mesh creation
3471
3472     mesh = makeMesh( theMeshName );
3473     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
3474
3475     if ( mesh_i && theIDsOfElements.length() )
3476     {
3477       TIDSortedElemSet elements;
3478       arrayToSet(theIDsOfElements, getMeshDS(), elements);
3479       translate(elements, theVector, false, theCopyGroups, & mesh_i->GetImpl());
3480       mesh_i->CreateGroupServants();
3481     }
3482
3483     if ( !myIsPreviewMode ) {
3484       pydump << mesh << " = " << this << ".TranslateMakeMesh( "
3485              << theIDsOfElements << ", "
3486              << theVector        << ", "
3487              << theCopyGroups    << ", '"
3488              << theMeshName      << "' )";
3489     }
3490   }
3491
3492   //dump "GetGroups"
3493   if (!myIsPreviewMode && mesh_i)
3494     mesh_i->GetGroups();
3495
3496   return mesh._retn();
3497 }
3498
3499 //=======================================================================
3500 //function : TranslateObjectMakeMesh
3501 //purpose  :
3502 //=======================================================================
3503
3504 SMESH::SMESH_Mesh_ptr
3505 SMESH_MeshEditor_i::TranslateObjectMakeMesh(SMESH::SMESH_IDSource_ptr theObject,
3506                                             const SMESH::DirStruct&   theVector,
3507                                             CORBA::Boolean            theCopyGroups,
3508                                             const char*               theMeshName)
3509   throw (SALOME::SALOME_Exception)
3510 {
3511   SMESH_TRY;
3512   SMESH_Mesh_i* mesh_i;
3513   SMESH::SMESH_Mesh_var mesh;
3514   { // open new scope to dump "MakeMesh" command
3515     // and then "GetGroups" using SMESH_Mesh::GetGroups()
3516
3517     TPythonDump pydump; // to prevent dump at mesh creation
3518     mesh = makeMesh( theMeshName );
3519     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
3520
3521     TIDSortedElemSet elements;
3522     if ( mesh_i &&
3523          idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
3524     {
3525       translate(elements, theVector,false, theCopyGroups, & mesh_i->GetImpl());
3526       mesh_i->CreateGroupServants();
3527     }
3528     if ( !myIsPreviewMode ) {
3529       pydump << mesh << " = " << this << ".TranslateObjectMakeMesh( "
3530              << theObject     << ", "
3531              << theVector     << ", "
3532              << theCopyGroups << ", '"
3533              << theMeshName   << "' )";
3534     }
3535   }
3536
3537   // dump "GetGroups"
3538   if (!myIsPreviewMode && mesh_i)
3539     mesh_i->GetGroups();
3540
3541   return mesh._retn();
3542
3543   SMESH_CATCH( SMESH::throwCorbaException );
3544   return 0;
3545 }
3546
3547 //=======================================================================
3548 //function : rotate
3549 //purpose  :
3550 //=======================================================================
3551
3552 SMESH::ListOfGroups*
3553 SMESH_MeshEditor_i::rotate(TIDSortedElemSet &        theElements,
3554                            const SMESH::AxisStruct & theAxis,
3555                            CORBA::Double             theAngle,
3556                            CORBA::Boolean            theCopy,
3557                            bool                      theMakeGroups,
3558                            ::SMESH_Mesh*             theTargetMesh)
3559   throw (SALOME::SALOME_Exception)
3560 {
3561   SMESH_TRY;
3562   initData();
3563
3564   if ( theTargetMesh )
3565     theCopy = false;
3566
3567   gp_Pnt P ( theAxis.x, theAxis.y, theAxis.z );
3568   gp_Vec V ( theAxis.vx, theAxis.vy, theAxis.vz );
3569
3570   gp_Trsf aTrsf;
3571   aTrsf.SetRotation( gp_Ax1( P, V ), theAngle);
3572
3573   TIDSortedElemSet  copyElements;
3574   TIDSortedElemSet* workElements = &theElements;
3575   if ( myIsPreviewMode ) {
3576     TPreviewMesh * tmpMesh = getPreviewMesh();
3577     tmpMesh->Copy( theElements, copyElements );
3578     if ( !theCopy && !theTargetMesh )
3579     {
3580       TIDSortedElemSet elemsAround, elemsAroundCopy;
3581       getElementsAround( theElements, getMeshDS(), elemsAround );
3582       tmpMesh->Copy( elemsAround, elemsAroundCopy);
3583     }
3584     workElements = &copyElements;
3585     theMakeGroups = false;
3586   }
3587
3588   ::SMESH_MeshEditor::PGroupIDs groupIds =
3589       getEditor().Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
3590
3591   if ( theCopy && !myIsPreviewMode)
3592   {
3593     if ( theTargetMesh ) theTargetMesh->GetMeshDS()->Modified();
3594     else                 declareMeshModified( /*isReComputeSafe=*/false );
3595   }
3596
3597   return theMakeGroups ? getGroups(groupIds.get()) : 0;
3598
3599   SMESH_CATCH( SMESH::throwCorbaException );
3600   return 0;
3601 }
3602
3603 //=======================================================================
3604 //function : Rotate
3605 //purpose  :
3606 //=======================================================================
3607
3608 void SMESH_MeshEditor_i::Rotate(const SMESH::long_array & theIDsOfElements,
3609                                 const SMESH::AxisStruct & theAxis,
3610                                 CORBA::Double             theAngle,
3611                                 CORBA::Boolean            theCopy)
3612   throw (SALOME::SALOME_Exception)
3613 {
3614   if (!myIsPreviewMode) {
3615     TPythonDump() << this << ".Rotate( "
3616                   << theIDsOfElements << ", "
3617                   << theAxis          << ", "
3618                   << TVar( theAngle ) << ", "
3619                   << theCopy          << " )";
3620   }
3621   if (theIDsOfElements.length() > 0)
3622   {
3623     TIDSortedElemSet elements;
3624     arrayToSet(theIDsOfElements, getMeshDS(), elements);
3625     rotate(elements,theAxis,theAngle,theCopy,false);
3626   }
3627 }
3628
3629 //=======================================================================
3630 //function : RotateObject
3631 //purpose  :
3632 //=======================================================================
3633
3634 void SMESH_MeshEditor_i::RotateObject(SMESH::SMESH_IDSource_ptr theObject,
3635                                       const SMESH::AxisStruct & theAxis,
3636                                       CORBA::Double             theAngle,
3637                                       CORBA::Boolean            theCopy)
3638   throw (SALOME::SALOME_Exception)
3639 {
3640   if ( !myIsPreviewMode ) {
3641     TPythonDump() << this << ".RotateObject( "
3642                   << theObject        << ", "
3643                   << theAxis          << ", "
3644                   << TVar( theAngle ) << ", "
3645                   << theCopy          << " )";
3646   }
3647   TIDSortedElemSet elements;
3648   bool emptyIfIsMesh = myIsPreviewMode ? false : true;
3649   if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
3650     rotate(elements,theAxis,theAngle,theCopy,false);
3651 }
3652
3653 //=======================================================================
3654 //function : RotateMakeGroups
3655 //purpose  :
3656 //=======================================================================
3657
3658 SMESH::ListOfGroups*
3659 SMESH_MeshEditor_i::RotateMakeGroups(const SMESH::long_array& theIDsOfElements,
3660                                      const SMESH::AxisStruct& theAxis,
3661                                      CORBA::Double            theAngle)
3662   throw (SALOME::SALOME_Exception)
3663 {
3664   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
3665
3666   SMESH::ListOfGroups * aGroups = 0;
3667   if (theIDsOfElements.length() > 0)
3668   {
3669     TIDSortedElemSet elements;
3670     arrayToSet(theIDsOfElements, getMeshDS(), elements);
3671     aGroups = rotate(elements,theAxis,theAngle,true,true);
3672   }
3673   if (!myIsPreviewMode) {
3674     dumpGroupsList(aPythonDump, aGroups);
3675     aPythonDump << this << ".RotateMakeGroups( "
3676                 << theIDsOfElements << ", "
3677                 << theAxis          << ", "
3678                 << TVar( theAngle ) << " )";
3679   }
3680   return aGroups;
3681 }
3682
3683 //=======================================================================
3684 //function : RotateObjectMakeGroups
3685 //purpose  :
3686 //=======================================================================
3687
3688 SMESH::ListOfGroups*
3689 SMESH_MeshEditor_i::RotateObjectMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
3690                                            const SMESH::AxisStruct&  theAxis,
3691                                            CORBA::Double             theAngle)
3692   throw (SALOME::SALOME_Exception)
3693 {
3694   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
3695
3696   SMESH::ListOfGroups * aGroups = 0;
3697   TIDSortedElemSet elements;
3698   if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
3699     aGroups = rotate(elements, theAxis, theAngle, true, true);
3700
3701   if (!myIsPreviewMode) {
3702     dumpGroupsList(aPythonDump, aGroups);
3703     aPythonDump << this << ".RotateObjectMakeGroups( "
3704                 << theObject        << ", "
3705                 << theAxis          << ", "
3706                 << TVar( theAngle ) << " )";
3707   }
3708   return aGroups;
3709 }
3710
3711 //=======================================================================
3712 //function : RotateMakeMesh
3713 //purpose  :
3714 //=======================================================================
3715
3716 SMESH::SMESH_Mesh_ptr
3717 SMESH_MeshEditor_i::RotateMakeMesh(const SMESH::long_array& theIDsOfElements,
3718                                    const SMESH::AxisStruct& theAxis,
3719                                    CORBA::Double            theAngleInRadians,
3720                                    CORBA::Boolean           theCopyGroups,
3721                                    const char*              theMeshName)
3722   throw (SALOME::SALOME_Exception)
3723 {
3724   SMESH_TRY;
3725   SMESH::SMESH_Mesh_var mesh;
3726   SMESH_Mesh_i* mesh_i;
3727
3728   { // open new scope to dump "MakeMesh" command
3729     // and then "GetGroups" using SMESH_Mesh::GetGroups()
3730
3731     TPythonDump pydump; // to prevent dump at mesh creation
3732
3733     mesh = makeMesh( theMeshName );
3734     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
3735
3736     if ( mesh_i && theIDsOfElements.length() > 0 )
3737     {
3738       TIDSortedElemSet elements;
3739       arrayToSet(theIDsOfElements, getMeshDS(), elements);
3740       rotate(elements, theAxis, theAngleInRadians,
3741              false, theCopyGroups, & mesh_i->GetImpl());
3742       mesh_i->CreateGroupServants();
3743     }
3744     if ( !myIsPreviewMode ) {
3745       pydump << mesh << " = " << this << ".RotateMakeMesh( "
3746              << theIDsOfElements          << ", "
3747              << theAxis                   << ", "
3748              << TVar( theAngleInRadians ) << ", "
3749              << theCopyGroups             << ", '"
3750              << theMeshName               << "' )";
3751     }
3752   }
3753
3754   // dump "GetGroups"
3755   if (!myIsPreviewMode && mesh_i && theIDsOfElements.length() > 0 )
3756     mesh_i->GetGroups();
3757
3758   return mesh._retn();
3759
3760   SMESH_CATCH( SMESH::throwCorbaException );
3761   return 0;
3762 }
3763
3764 //=======================================================================
3765 //function : RotateObjectMakeMesh
3766 //purpose  :
3767 //=======================================================================
3768
3769 SMESH::SMESH_Mesh_ptr
3770 SMESH_MeshEditor_i::RotateObjectMakeMesh(SMESH::SMESH_IDSource_ptr theObject,
3771                                          const SMESH::AxisStruct&  theAxis,
3772                                          CORBA::Double             theAngleInRadians,
3773                                          CORBA::Boolean            theCopyGroups,
3774                                          const char*               theMeshName)
3775   throw (SALOME::SALOME_Exception)
3776 {
3777   SMESH_TRY;
3778   SMESH::SMESH_Mesh_var mesh;
3779   SMESH_Mesh_i* mesh_i;
3780
3781   {// open new scope to dump "MakeMesh" command
3782    // and then "GetGroups" using SMESH_Mesh::GetGroups()
3783
3784     TPythonDump pydump; // to prevent dump at mesh creation
3785     mesh = makeMesh( theMeshName );
3786     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
3787
3788     TIDSortedElemSet elements;
3789     if (mesh_i &&
3790         idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
3791     {
3792       rotate(elements, theAxis, theAngleInRadians,
3793              false, theCopyGroups, & mesh_i->GetImpl());
3794       mesh_i->CreateGroupServants();
3795     }
3796     if ( !myIsPreviewMode ) {
3797       pydump << mesh << " = " << this << ".RotateObjectMakeMesh( "
3798              << theObject                 << ", "
3799              << theAxis                   << ", "
3800              << TVar( theAngleInRadians ) << ", "
3801              << theCopyGroups             << ", '"
3802              << theMeshName               << "' )";
3803     }
3804   }
3805
3806   // dump "GetGroups"
3807   if (!myIsPreviewMode && mesh_i)
3808     mesh_i->GetGroups();
3809
3810   return mesh._retn();
3811
3812   SMESH_CATCH( SMESH::throwCorbaException );
3813   return 0;
3814 }
3815
3816 //=======================================================================
3817 //function : scale
3818 //purpose  :
3819 //=======================================================================
3820
3821 SMESH::ListOfGroups*
3822 SMESH_MeshEditor_i::scale(SMESH::SMESH_IDSource_ptr  theObject,
3823                           const SMESH::PointStruct&  thePoint,
3824                           const SMESH::double_array& theScaleFact,
3825                           CORBA::Boolean             theCopy,
3826                           bool                       theMakeGroups,
3827                           ::SMESH_Mesh*              theTargetMesh)
3828   throw (SALOME::SALOME_Exception)
3829 {
3830   SMESH_TRY;
3831   initData();
3832   if ( theScaleFact.length() < 1 )
3833     THROW_SALOME_CORBA_EXCEPTION("Scale factor not given", SALOME::BAD_PARAM);
3834   if ( theScaleFact.length() == 2 )
3835     THROW_SALOME_CORBA_EXCEPTION("Invalid nb of scale factors : 2", SALOME::BAD_PARAM);
3836
3837   if ( theTargetMesh )
3838     theCopy = false;
3839
3840   TIDSortedElemSet elements;
3841   bool emptyIfIsMesh = myIsPreviewMode ? false : true;
3842   if ( !idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
3843     return 0;
3844
3845   double S[3] = {
3846     theScaleFact[0],
3847     (theScaleFact.length() == 1) ? theScaleFact[0] : theScaleFact[1],
3848     (theScaleFact.length() == 1) ? theScaleFact[0] : theScaleFact[2],
3849   };
3850   gp_Trsf aTrsf;
3851
3852 #if OCC_VERSION_LARGE > 0x06070100
3853   // fight against orthogonalization
3854   // aTrsf.SetValues( S[0], 0,    0,    thePoint.x * (1-S[0]),
3855   //                  0,    S[1], 0,    thePoint.y * (1-S[1]),
3856   //                  0,    0,    S[2], thePoint.z * (1-S[2]) );
3857   aTrsf.SetScale( gp::Origin(), 1.0 ); // set form which is used to make group names
3858   gp_XYZ & loc = ( gp_XYZ& ) aTrsf.TranslationPart();
3859   gp_Mat & M   = ( gp_Mat& ) aTrsf.HVectorialPart();
3860   loc.SetCoord( thePoint.x * (1-S[0]),
3861                 thePoint.y * (1-S[1]),
3862                 thePoint.z * (1-S[2]));
3863   M.SetDiagonal( S[0], S[1], S[2] );
3864
3865 #else
3866   double tol = std::numeric_limits<double>::max();
3867   aTrsf.SetValues( S[0], 0,    0,    thePoint.x * (1-S[0]),
3868                    0,    S[1], 0,    thePoint.y * (1-S[1]),
3869                    0,    0,    S[2], thePoint.z * (1-S[2]),   tol, tol);
3870 #endif
3871
3872   TIDSortedElemSet  copyElements;
3873   TIDSortedElemSet* workElements = &elements;
3874   if ( myIsPreviewMode )
3875   {
3876     TPreviewMesh * tmpMesh = getPreviewMesh();
3877     tmpMesh->Copy( elements, copyElements);
3878     if ( !theCopy && !theTargetMesh )
3879     {
3880       TIDSortedElemSet elemsAround, elemsAroundCopy;
3881       getElementsAround( elements, getMeshDS(), elemsAround );
3882       tmpMesh->Copy( elemsAround, elemsAroundCopy);
3883     }
3884     workElements = & copyElements;
3885     theMakeGroups = false;
3886   }
3887
3888   ::SMESH_MeshEditor::PGroupIDs groupIds =
3889       getEditor().Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
3890
3891   if ( theCopy && !myIsPreviewMode )
3892   {
3893     if ( theTargetMesh ) theTargetMesh->GetMeshDS()->Modified();
3894     else                 declareMeshModified( /*isReComputeSafe=*/false );
3895   }
3896   return theMakeGroups ? getGroups(groupIds.get()) : 0;
3897
3898   SMESH_CATCH( SMESH::throwCorbaException );
3899   return 0;
3900 }
3901
3902 //=======================================================================
3903 //function : Scale
3904 //purpose  :
3905 //=======================================================================
3906
3907 void SMESH_MeshEditor_i::Scale(SMESH::SMESH_IDSource_ptr  theObject,
3908                                const SMESH::PointStruct&  thePoint,
3909                                const SMESH::double_array& theScaleFact,
3910                                CORBA::Boolean             theCopy)
3911   throw (SALOME::SALOME_Exception)
3912 {
3913   if ( !myIsPreviewMode ) {
3914     TPythonDump() << this << ".Scale( "
3915                   << theObject            << ", "
3916                   << thePoint             << ", "
3917                   << TVar( theScaleFact ) << ", "
3918                   << theCopy              << " )";
3919   }
3920   scale(theObject, thePoint, theScaleFact, theCopy, false);
3921 }
3922
3923
3924 //=======================================================================
3925 //function : ScaleMakeGroups
3926 //purpose  :
3927 //=======================================================================
3928
3929 SMESH::ListOfGroups*
3930 SMESH_MeshEditor_i::ScaleMakeGroups(SMESH::SMESH_IDSource_ptr  theObject,
3931                                     const SMESH::PointStruct&  thePoint,
3932                                     const SMESH::double_array& theScaleFact)
3933   throw (SALOME::SALOME_Exception)
3934 {
3935   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
3936
3937   SMESH::ListOfGroups * aGroups = scale(theObject, thePoint, theScaleFact, true, true);
3938   if (!myIsPreviewMode) {
3939     dumpGroupsList(aPythonDump, aGroups);
3940     aPythonDump << this << ".Scale("
3941                 << theObject            << ","
3942                 << thePoint             << ","
3943                 << TVar( theScaleFact ) << ",True,True)";
3944   }
3945   return aGroups;
3946 }
3947
3948
3949 //=======================================================================
3950 //function : ScaleMakeMesh
3951 //purpose  :
3952 //=======================================================================
3953
3954 SMESH::SMESH_Mesh_ptr
3955 SMESH_MeshEditor_i::ScaleMakeMesh(SMESH::SMESH_IDSource_ptr  theObject,
3956                                   const SMESH::PointStruct&  thePoint,
3957                                   const SMESH::double_array& theScaleFact,
3958                                   CORBA::Boolean             theCopyGroups,
3959                                   const char*                theMeshName)
3960   throw (SALOME::SALOME_Exception)
3961 {
3962   SMESH_Mesh_i* mesh_i;
3963   SMESH::SMESH_Mesh_var mesh;
3964   { // open new scope to dump "MakeMesh" command
3965     // and then "GetGroups" using SMESH_Mesh::GetGroups()
3966
3967     TPythonDump pydump; // to prevent dump at mesh creation
3968     mesh = makeMesh( theMeshName );
3969     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
3970
3971     if ( mesh_i )
3972     {
3973       scale(theObject, thePoint, theScaleFact,false, theCopyGroups, & mesh_i->GetImpl());
3974       mesh_i->CreateGroupServants();
3975     }
3976     if ( !myIsPreviewMode )
3977       pydump << mesh << " = " << this << ".ScaleMakeMesh( "
3978              << theObject            << ", "
3979              << thePoint             << ", "
3980              << TVar( theScaleFact ) << ", "
3981              << theCopyGroups        << ", '"
3982              << theMeshName          << "' )";
3983   }
3984
3985   // dump "GetGroups"
3986   if (!myIsPreviewMode && mesh_i)
3987     mesh_i->GetGroups();
3988
3989   return mesh._retn();
3990 }
3991
3992
3993 //=======================================================================
3994 //function : findCoincidentNodes
3995 //purpose  :
3996 //=======================================================================
3997
3998 void SMESH_MeshEditor_i::
3999 findCoincidentNodes (TIDSortedNodeSet &             Nodes,
4000                      CORBA::Double                  Tolerance,
4001                      SMESH::array_of_long_array_out GroupsOfNodes,
4002                      CORBA::Boolean                 SeparateCornersAndMedium)
4003 {
4004   ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes;
4005   getEditor().FindCoincidentNodes( Nodes, Tolerance, aListOfListOfNodes, SeparateCornersAndMedium );
4006
4007   GroupsOfNodes = new SMESH::array_of_long_array;
4008   GroupsOfNodes->length( aListOfListOfNodes.size() );
4009   ::SMESH_MeshEditor::TListOfListOfNodes::iterator llIt = aListOfListOfNodes.begin();
4010   for ( CORBA::Long i = 0; llIt != aListOfListOfNodes.end(); llIt++, i++ )
4011   {
4012     list< const SMDS_MeshNode* >& aListOfNodes = *llIt;
4013     list< const SMDS_MeshNode* >::iterator lIt = aListOfNodes.begin();;
4014     SMESH::long_array& aGroup = (*GroupsOfNodes)[ i ];
4015     aGroup.length( aListOfNodes.size() );
4016     for ( int j = 0; lIt != aListOfNodes.end(); lIt++, j++ )
4017       aGroup[ j ] = (*lIt)->GetID();
4018   }
4019 }
4020
4021 //=======================================================================
4022 //function : FindCoincidentNodes
4023 //purpose  :
4024 //=======================================================================
4025
4026 void SMESH_MeshEditor_i::
4027 FindCoincidentNodes (CORBA::Double                  Tolerance,
4028                      SMESH::array_of_long_array_out GroupsOfNodes,
4029                      CORBA::Boolean                 SeparateCornersAndMedium)
4030   throw (SALOME::SALOME_Exception)
4031 {
4032   SMESH_TRY;
4033   initData();
4034
4035   TIDSortedNodeSet nodes; // no input nodes
4036   findCoincidentNodes( nodes, Tolerance, GroupsOfNodes, SeparateCornersAndMedium );
4037
4038   TPythonDump() << "coincident_nodes = " << this << ".FindCoincidentNodes( "
4039                 << Tolerance << ", "
4040                 << SeparateCornersAndMedium << " )";
4041
4042   SMESH_CATCH( SMESH::throwCorbaException );
4043 }
4044
4045 //=======================================================================
4046 //function : FindCoincidentNodesOnPart
4047 //purpose  :
4048 //=======================================================================
4049
4050 void SMESH_MeshEditor_i::
4051 FindCoincidentNodesOnPart(SMESH::SMESH_IDSource_ptr      theObject,
4052                           CORBA::Double                  Tolerance,
4053                           SMESH::array_of_long_array_out GroupsOfNodes,
4054                           CORBA::Boolean                 SeparateCornersAndMedium)
4055   throw (SALOME::SALOME_Exception)
4056 {
4057   SMESH_TRY;
4058   initData();
4059
4060   TIDSortedNodeSet nodes;
4061   idSourceToNodeSet( theObject, getMeshDS(), nodes );
4062
4063   findCoincidentNodes( nodes, Tolerance, GroupsOfNodes, SeparateCornersAndMedium );
4064
4065   TPythonDump() << "coincident_nodes_on_part = " << this << ".FindCoincidentNodesOnPart( "
4066                 << theObject <<", "
4067                 << Tolerance << ", "
4068                 << SeparateCornersAndMedium << " )";
4069
4070   SMESH_CATCH( SMESH::throwCorbaException );
4071 }
4072
4073 //================================================================================
4074 /*!
4075  * \brief Finds nodes coinsident with Tolerance within Object excluding nodes within
4076  *        ExceptSubMeshOrGroups
4077  */
4078 //================================================================================
4079
4080 void SMESH_MeshEditor_i::
4081 FindCoincidentNodesOnPartBut(SMESH::SMESH_IDSource_ptr      theObject,
4082                              CORBA::Double                  theTolerance,
4083                              SMESH::array_of_long_array_out theGroupsOfNodes,
4084                              const SMESH::ListOfIDSources&  theExceptSubMeshOrGroups,
4085                              CORBA::Boolean                 theSeparateCornersAndMedium)
4086   throw (SALOME::SALOME_Exception)
4087 {
4088   SMESH_TRY;
4089   initData();
4090
4091   TIDSortedNodeSet nodes;
4092   idSourceToNodeSet( theObject, getMeshDS(), nodes );
4093
4094   for ( int i = 0; i < theExceptSubMeshOrGroups.length(); ++i )
4095   {
4096     SMDS_ElemIteratorPtr nodeIt = myMesh_i->GetElements( theExceptSubMeshOrGroups[i],
4097                                                          SMESH::NODE );
4098     while ( nodeIt->more() )
4099       nodes.erase( cast2Node( nodeIt->next() ));
4100   }
4101   findCoincidentNodes( nodes, theTolerance, theGroupsOfNodes, theSeparateCornersAndMedium );
4102
4103   TPythonDump() << "coincident_nodes_on_part = " << this << ".FindCoincidentNodesOnPartBut( "
4104                 << theObject<<", "
4105                 << theTolerance << ", "
4106                 << theExceptSubMeshOrGroups << ", "
4107                 << theSeparateCornersAndMedium << " )";
4108
4109   SMESH_CATCH( SMESH::throwCorbaException );
4110 }
4111
4112 //=======================================================================
4113 //function : MergeNodes
4114 //purpose  :
4115 //=======================================================================
4116
4117 void SMESH_MeshEditor_i::MergeNodes (const SMESH::array_of_long_array& GroupsOfNodes,
4118                                      const SMESH::ListOfIDSources&     NodesToKeep)
4119   throw (SALOME::SALOME_Exception)
4120 {
4121   SMESH_TRY;
4122   initData();
4123
4124   SMESHDS_Mesh* aMesh = getMeshDS();
4125
4126   TPythonDump aTPythonDump;
4127   aTPythonDump << this << ".MergeNodes([";
4128
4129   TIDSortedNodeSet setOfNodesToKeep;
4130   for ( int i = 0; i < NodesToKeep.length(); ++i )
4131   {
4132     prepareIdSource( NodesToKeep[i] );
4133     SMDS_ElemIteratorPtr nodeIt = myMesh_i->GetElements( NodesToKeep[i], SMESH::NODE );
4134     while ( nodeIt->more() )
4135       setOfNodesToKeep.insert( setOfNodesToKeep.end(), cast2Node( nodeIt->next() ));
4136   }
4137
4138   ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes;
4139   for (int i = 0; i < GroupsOfNodes.length(); i++)
4140   {
4141     const SMESH::long_array& aNodeGroup = GroupsOfNodes[ i ];
4142     aListOfListOfNodes.push_back( list< const SMDS_MeshNode* >() );
4143     list< const SMDS_MeshNode* >& aListOfNodes = aListOfListOfNodes.back();
4144     for ( int j = 0; j < aNodeGroup.length(); j++ )
4145     {
4146       CORBA::Long index = aNodeGroup[ j ];
4147       if ( const SMDS_MeshNode * node = aMesh->FindNode( index ))
4148       {
4149         if ( setOfNodesToKeep.count( node ))
4150           aListOfNodes.push_front( node );
4151         else
4152           aListOfNodes.push_back( node );
4153       }
4154     }
4155     if ( aListOfNodes.size() < 2 )
4156       aListOfListOfNodes.pop_back();
4157
4158     if ( i > 0 ) aTPythonDump << ", ";
4159     aTPythonDump << aNodeGroup;
4160   }
4161
4162   getEditor().MergeNodes( aListOfListOfNodes );
4163
4164   aTPythonDump << "], " << NodesToKeep << ")";
4165
4166   declareMeshModified( /*isReComputeSafe=*/false );
4167
4168   SMESH_CATCH( SMESH::throwCorbaException );
4169 }
4170
4171 //=======================================================================
4172 //function : FindEqualElements
4173 //purpose  :
4174 //=======================================================================
4175
4176 void SMESH_MeshEditor_i::FindEqualElements(SMESH::SMESH_IDSource_ptr      theObject,
4177                                            SMESH::array_of_long_array_out GroupsOfElementsID)
4178   throw (SALOME::SALOME_Exception)
4179 {
4180   SMESH_TRY;
4181   initData();
4182
4183   SMESH::SMESH_GroupBase_var group = SMESH::SMESH_GroupBase::_narrow(theObject);
4184   if ( !(!group->_is_nil() && group->GetType() == SMESH::NODE) )
4185   {
4186     TIDSortedElemSet elems;
4187     idSourceToSet( theObject, getMeshDS(), elems, SMDSAbs_All, /*emptyIfIsMesh=*/true);
4188
4189     ::SMESH_MeshEditor::TListOfListOfElementsID aListOfListOfElementsID;
4190     getEditor().FindEqualElements( elems, aListOfListOfElementsID );
4191
4192     GroupsOfElementsID = new SMESH::array_of_long_array;
4193     GroupsOfElementsID->length( aListOfListOfElementsID.size() );
4194
4195     ::SMESH_MeshEditor::TListOfListOfElementsID::iterator arraysIt =
4196         aListOfListOfElementsID.begin();
4197     for (CORBA::Long j = 0; arraysIt != aListOfListOfElementsID.end(); ++arraysIt, ++j)
4198     {
4199       SMESH::long_array& aGroup = (*GroupsOfElementsID)[ j ];
4200       list<int>&      listOfIDs = *arraysIt;
4201       aGroup.length( listOfIDs.size() );
4202       list<int>::iterator idIt = listOfIDs.begin();
4203       for (int k = 0; idIt != listOfIDs.end(); ++idIt, ++k )
4204         aGroup[ k ] = *idIt;
4205     }
4206
4207     TPythonDump() << "equal_elements = " << this << ".FindEqualElements( "
4208                   <<theObject<<" )";
4209   }
4210
4211   SMESH_CATCH( SMESH::throwCorbaException );
4212 }
4213
4214 //=======================================================================
4215 //function : MergeElements
4216 //purpose  :
4217 //=======================================================================
4218
4219 void SMESH_MeshEditor_i::MergeElements(const SMESH::array_of_long_array& GroupsOfElementsID)
4220   throw (SALOME::SALOME_Exception)
4221 {
4222   SMESH_TRY;
4223   initData();
4224
4225   TPythonDump aTPythonDump;
4226   aTPythonDump << this << ".MergeElements( [";
4227
4228   ::SMESH_MeshEditor::TListOfListOfElementsID aListOfListOfElementsID;
4229
4230   for (int i = 0; i < GroupsOfElementsID.length(); i++) {
4231     const SMESH::long_array& anElemsIDGroup = GroupsOfElementsID[ i ];
4232     aListOfListOfElementsID.push_back( list< int >() );
4233     list< int >& aListOfElemsID = aListOfListOfElementsID.back();
4234     for ( int j = 0; j < anElemsIDGroup.length(); j++ ) {
4235       CORBA::Long id = anElemsIDGroup[ j ];
4236       aListOfElemsID.push_back( id );
4237     }
4238     if ( aListOfElemsID.size() < 2 )
4239       aListOfListOfElementsID.pop_back();
4240     if ( i > 0 ) aTPythonDump << ", ";
4241     aTPythonDump << anElemsIDGroup;
4242   }
4243
4244   getEditor().MergeElements(aListOfListOfElementsID);
4245
4246   declareMeshModified( /*isReComputeSafe=*/true );
4247
4248   aTPythonDump << "] )";
4249
4250   SMESH_CATCH( SMESH::throwCorbaException );
4251 }
4252
4253 //=======================================================================
4254 //function : MergeEqualElements
4255 //purpose  :
4256 //=======================================================================
4257
4258 void SMESH_MeshEditor_i::MergeEqualElements()
4259   throw (SALOME::SALOME_Exception)
4260 {
4261   SMESH_TRY;
4262   initData();
4263
4264   getEditor().MergeEqualElements();
4265
4266   declareMeshModified( /*isReComputeSafe=*/true );
4267
4268   TPythonDump() << this << ".MergeEqualElements()";
4269
4270   SMESH_CATCH( SMESH::throwCorbaException );
4271 }
4272
4273 //=============================================================================
4274 /*!
4275  * Move the node to a given point
4276  */
4277 //=============================================================================
4278
4279 CORBA::Boolean SMESH_MeshEditor_i::MoveNode(CORBA::Long   NodeID,
4280                                             CORBA::Double x,
4281                                             CORBA::Double y,
4282                                             CORBA::Double z)
4283   throw (SALOME::SALOME_Exception)
4284 {
4285   SMESH_TRY;
4286   initData(/*deleteSearchers=*/false);
4287
4288   const SMDS_MeshNode * node = getMeshDS()->FindNode( NodeID );
4289   if ( !node )
4290     return false;
4291
4292   if ( theNodeSearcher )
4293     theSearchersDeleter.Set( myMesh ); // remove theNodeSearcher if mesh is other
4294
4295   if ( myIsPreviewMode ) // make preview data
4296   {
4297     // in a preview mesh, make edges linked to a node
4298     TPreviewMesh& tmpMesh = *getPreviewMesh();
4299     TIDSortedElemSet linkedNodes;
4300     ::SMESH_MeshEditor::GetLinkedNodes( node, linkedNodes );
4301     TIDSortedElemSet::iterator nIt = linkedNodes.begin();
4302     SMDS_MeshNode *nodeCpy1 = tmpMesh.Copy(node);
4303     for ( ; nIt != linkedNodes.end(); ++nIt )
4304     {
4305       SMDS_MeshNode *nodeCpy2 = tmpMesh.Copy ( cast2Node( *nIt ));
4306       tmpMesh.GetMeshDS()->AddEdge(nodeCpy1, nodeCpy2);
4307     }
4308     // move copied node
4309     if ( nodeCpy1 )
4310       tmpMesh.GetMeshDS()->MoveNode(nodeCpy1, x, y, z);
4311     // fill preview data
4312   }
4313   else if ( theNodeSearcher ) // move node and update theNodeSearcher data accordingly
4314     theNodeSearcher->MoveNode(node, gp_Pnt( x,y,z ));
4315   else
4316     getMeshDS()->MoveNode(node, x, y, z);
4317
4318   if ( !myIsPreviewMode )
4319   {
4320     // Update Python script
4321     TPythonDump() << "isDone = " << this << ".MoveNode( "
4322                   << NodeID << ", " << TVar(x) << ", " << TVar(y) << ", " << TVar(z) << " )";
4323     declareMeshModified( /*isReComputeSafe=*/false );
4324   }
4325
4326   SMESH_CATCH( SMESH::throwCorbaException );
4327
4328   return true;
4329 }
4330
4331 //================================================================================
4332 /*!
4333  * \brief Return ID of node closest to a given point
4334  */
4335 //================================================================================
4336
4337 CORBA::Long SMESH_MeshEditor_i::FindNodeClosestTo(CORBA::Double x,
4338                                                   CORBA::Double y,
4339                                                   CORBA::Double z)
4340   throw (SALOME::SALOME_Exception)
4341 {
4342   SMESH_TRY;
4343   theSearchersDeleter.Set( myMesh ); // remove theNodeSearcher if mesh is other
4344
4345   if ( !theNodeSearcher ) {
4346     theNodeSearcher = SMESH_MeshAlgos::GetNodeSearcher( *getMeshDS() );
4347   }
4348   gp_Pnt p( x,y,z );
4349   if ( const SMDS_MeshNode* node = theNodeSearcher->FindClosestTo( p ))
4350     return node->GetID();
4351
4352   SMESH_CATCH( SMESH::throwCorbaException );
4353   return 0;
4354 }
4355
4356 //================================================================================
4357 /*!
4358  * \brief If the given ID is a valid node ID (nodeID > 0), just move this node, else
4359  * move the node closest to the point to point's location and return ID of the node
4360  */
4361 //================================================================================
4362
4363 CORBA::Long SMESH_MeshEditor_i::MoveClosestNodeToPoint(CORBA::Double x,
4364                                                        CORBA::Double y,
4365                                                        CORBA::Double z,
4366                                                        CORBA::Long   theNodeID)
4367   throw (SALOME::SALOME_Exception)
4368 {
4369   SMESH_TRY;
4370   // We keep theNodeSearcher until any mesh modification:
4371   // 1) initData() deletes theNodeSearcher at any edition,
4372   // 2) TSearchersDeleter - at any mesh compute event and mesh change
4373
4374   initData(/*deleteSearchers=*/false);
4375
4376   theSearchersDeleter.Set( myMesh ); // remove theNodeSearcher if mesh is other
4377
4378   int nodeID = theNodeID;
4379   const SMDS_MeshNode* node = getMeshDS()->FindNode( nodeID );
4380   if ( !node ) // preview moving node
4381   {
4382     if ( !theNodeSearcher ) {
4383       theNodeSearcher = SMESH_MeshAlgos::GetNodeSearcher( *getMeshDS() );
4384     }
4385     gp_Pnt p( x,y,z );
4386     node = theNodeSearcher->FindClosestTo( p );
4387   }
4388   if ( node ) {
4389     nodeID = node->GetID();
4390     if ( myIsPreviewMode ) // make preview data
4391     {
4392       // in a preview mesh, make edges linked to a node
4393       TPreviewMesh tmpMesh = *getPreviewMesh();
4394       TIDSortedElemSet linkedNodes;
4395       ::SMESH_MeshEditor::GetLinkedNodes( node, linkedNodes );
4396       TIDSortedElemSet::iterator nIt = linkedNodes.begin();
4397       for ( ; nIt != linkedNodes.end(); ++nIt )
4398       {
4399         SMDS_LinearEdge edge( node, cast2Node( *nIt ));
4400         tmpMesh.Copy( &edge );
4401       }
4402       // move copied node
4403       node = tmpMesh.GetMeshDS()->FindNode( nodeID );
4404       if ( node )
4405         tmpMesh.GetMeshDS()->MoveNode(node, x, y, z);
4406       // fill preview data
4407     }
4408     else if ( theNodeSearcher ) // move node and update theNodeSearcher data accordingly
4409     {
4410       theNodeSearcher->MoveNode(node, gp_Pnt( x,y,z ));
4411     }
4412     else
4413     {
4414       getMeshDS()->MoveNode(node, x, y, z);
4415     }
4416   }
4417
4418   if ( !myIsPreviewMode )
4419   {
4420     TPythonDump() << "nodeID = " << this
4421                   << ".MoveClosestNodeToPoint( "<< x << ", " << y << ", " << z
4422                   << ", " << nodeID << " )";
4423
4424     declareMeshModified( /*isReComputeSafe=*/false );
4425   }
4426
4427   return nodeID;
4428
4429   SMESH_CATCH( SMESH::throwCorbaException );
4430   return 0;
4431 }
4432
4433 //=======================================================================
4434 /*!
4435  * Return elements of given type where the given point is IN or ON.
4436  *
4437  * 'ALL' type means elements of any type excluding nodes
4438  */
4439 //=======================================================================
4440
4441 SMESH::long_array* SMESH_MeshEditor_i::FindElementsByPoint(CORBA::Double      x,
4442                                                            CORBA::Double      y,
4443                                                            CORBA::Double      z,
4444                                                            SMESH::ElementType type)
4445   throw (SALOME::SALOME_Exception)
4446 {
4447   SMESH_TRY;
4448   SMESH::long_array_var res = new SMESH::long_array;
4449   vector< const SMDS_MeshElement* > foundElems;
4450
4451   theSearchersDeleter.Set( myMesh );
4452   if ( !theElementSearcher ) {
4453     theElementSearcher = SMESH_MeshAlgos::GetElementSearcher( *getMeshDS() );
4454   }
4455   theElementSearcher->FindElementsByPoint( gp_Pnt( x,y,z ),
4456                                            SMDSAbs_ElementType( type ),
4457                                            foundElems);
4458   res->length( foundElems.size() );
4459   for ( int i = 0; i < foundElems.size(); ++i )
4460     res[i] = foundElems[i]->GetID();
4461
4462   return res._retn();
4463
4464   SMESH_CATCH( SMESH::throwCorbaException );
4465   return 0;
4466 }
4467
4468 //=======================================================================
4469 //function : FindAmongElementsByPoint
4470 //purpose  : Searching among the given elements, return elements of given type 
4471 //           where the given point is IN or ON.
4472 //           'ALL' type means elements of any type excluding nodes
4473 //=======================================================================
4474
4475 SMESH::long_array*
4476 SMESH_MeshEditor_i::FindAmongElementsByPoint(SMESH::SMESH_IDSource_ptr elementIDs,
4477                                              CORBA::Double             x,
4478                                              CORBA::Double             y,
4479                                              CORBA::Double             z,
4480                                              SMESH::ElementType        type)
4481   throw (SALOME::SALOME_Exception)
4482 {
4483   SMESH_TRY;
4484   SMESH::long_array_var res = new SMESH::long_array;
4485   
4486   SMESH::array_of_ElementType_var types = elementIDs->GetTypes();
4487   if ( types->length() == 1 && // a part contains only nodes or 0D elements
4488        ( types[0] == SMESH::NODE || types[0] == SMESH::ELEM0D || types[0] == SMESH::BALL) &&
4489        type != types[0] ) // but search of elements of dim > 0
4490     return res._retn();
4491
4492   if ( SMESH::DownCast<SMESH_Mesh_i*>( elementIDs )) // elementIDs is the whole mesh 
4493     return FindElementsByPoint( x,y,z, type );
4494
4495   TIDSortedElemSet elements; // elems should live until FindElementsByPoint() finishes
4496
4497   theSearchersDeleter.Set( myMesh, getPartIOR( elementIDs, type ));
4498   if ( !theElementSearcher )
4499   {
4500     // create a searcher from elementIDs
4501     SMESH::SMESH_Mesh_var mesh = elementIDs->GetMesh();
4502     SMESHDS_Mesh* meshDS = SMESH::DownCast<SMESH_Mesh_i*>( mesh )->GetImpl().GetMeshDS();
4503
4504     if ( !idSourceToSet( elementIDs, meshDS, elements,
4505                          SMDSAbs_ElementType(type), /*emptyIfIsMesh=*/true))
4506       return res._retn();
4507
4508     typedef SMDS_SetIterator<const SMDS_MeshElement*, TIDSortedElemSet::const_iterator > TIter;
4509     SMDS_ElemIteratorPtr elemsIt( new TIter( elements.begin(), elements.end() ));
4510
4511     theElementSearcher = SMESH_MeshAlgos::GetElementSearcher( *getMeshDS(), elemsIt );
4512   }
4513
4514   vector< const SMDS_MeshElement* > foundElems;
4515
4516   theElementSearcher->FindElementsByPoint( gp_Pnt( x,y,z ),
4517                                            SMDSAbs_ElementType( type ),
4518                                            foundElems);
4519   res->length( foundElems.size() );
4520   for ( int i = 0; i < foundElems.size(); ++i )
4521     res[i] = foundElems[i]->GetID();
4522
4523   return res._retn();
4524
4525   SMESH_CATCH( SMESH::throwCorbaException );
4526   return 0;
4527 }
4528
4529 //=======================================================================
4530 //function : GetPointState
4531 //purpose  : Return point state in a closed 2D mesh in terms of TopAbs_State enumeration.
4532 //           TopAbs_UNKNOWN state means that either mesh is wrong or the analysis fails.
4533 //=======================================================================
4534
4535 CORBA::Short SMESH_MeshEditor_i::GetPointState(CORBA::Double x,
4536                                                CORBA::Double y,
4537                                                CORBA::Double z)
4538   throw (SALOME::SALOME_Exception)
4539 {
4540   SMESH_TRY;
4541   theSearchersDeleter.Set( myMesh );
4542   if ( !theElementSearcher ) {
4543     theElementSearcher = SMESH_MeshAlgos::GetElementSearcher( *getMeshDS() );
4544   }
4545   return CORBA::Short( theElementSearcher->GetPointState( gp_Pnt( x,y,z )));
4546
4547   SMESH_CATCH( SMESH::throwCorbaException );
4548   return 0;
4549 }
4550
4551 //=======================================================================
4552 //function : convError
4553 //purpose  :
4554 //=======================================================================
4555
4556 #define RETCASE(enm) case ::SMESH_MeshEditor::enm: return SMESH::SMESH_MeshEditor::enm;
4557
4558 static SMESH::SMESH_MeshEditor::Sew_Error convError( const::SMESH_MeshEditor::Sew_Error e )
4559 {
4560   switch ( e ) {
4561     RETCASE( SEW_OK );
4562     RETCASE( SEW_BORDER1_NOT_FOUND );
4563     RETCASE( SEW_BORDER2_NOT_FOUND );
4564     RETCASE( SEW_BOTH_BORDERS_NOT_FOUND );
4565     RETCASE( SEW_BAD_SIDE_NODES );
4566     RETCASE( SEW_VOLUMES_TO_SPLIT );
4567     RETCASE( SEW_DIFF_NB_OF_ELEMENTS );
4568     RETCASE( SEW_TOPO_DIFF_SETS_OF_ELEMENTS );
4569     RETCASE( SEW_BAD_SIDE1_NODES );
4570     RETCASE( SEW_BAD_SIDE2_NODES );
4571   }
4572   return SMESH::SMESH_MeshEditor::SEW_OK;
4573 }
4574
4575 //=======================================================================
4576 /*!
4577  * Returns groups of FreeBorder's coincident within the given tolerance.
4578  * If the tolerance <= 0.0 then one tenth of an average size of elements adjacent
4579  * to free borders being compared is used.
4580  */
4581 //=======================================================================
4582
4583 SMESH::CoincidentFreeBorders*
4584 SMESH_MeshEditor_i::FindCoincidentFreeBorders(CORBA::Double tolerance)
4585 {
4586   SMESH::CoincidentFreeBorders_var aCFB = new SMESH::CoincidentFreeBorders;
4587
4588   SMESH_TRY;
4589
4590   SMESH_MeshAlgos::CoincidentFreeBorders cfb;
4591   SMESH_MeshAlgos::FindCoincidentFreeBorders( *getMeshDS(), tolerance, cfb );
4592
4593   // copy free borders
4594   aCFB->borders.length( cfb._borders.size() );
4595   for ( size_t i = 0; i < cfb._borders.size(); ++i )
4596   {
4597     SMESH_MeshAlgos::TFreeBorder& nodes = cfb._borders[i];
4598     SMESH::FreeBorder&             aBRD = aCFB->borders[i];
4599     aBRD.nodeIDs.length( nodes.size() );
4600     for ( size_t iN = 0; iN < nodes.size(); ++iN )
4601       aBRD.nodeIDs[ iN ] = nodes[ iN ]->GetID();
4602   }
4603
4604   // copy coincident parts
4605   aCFB->coincidentGroups.length( cfb._coincidentGroups.size() );
4606   for ( size_t i = 0; i < cfb._coincidentGroups.size(); ++i )
4607   {
4608     SMESH_MeshAlgos::TCoincidentGroup& grp = cfb._coincidentGroups[i];
4609     SMESH::FreeBordersGroup&          aGRP = aCFB->coincidentGroups[i];
4610     aGRP.length( grp.size() );
4611     for ( size_t iP = 0; iP < grp.size(); ++iP )
4612     {
4613       SMESH_MeshAlgos::TFreeBorderPart& part = grp[ iP ];
4614       SMESH::FreeBorderPart&           aPART = aGRP[ iP ];
4615       aPART.border   = part._border;
4616       aPART.node1    = part._node1;
4617       aPART.node2    = part._node2;
4618       aPART.nodeLast = part._nodeLast;
4619     }
4620   }
4621   SMESH_CATCH( SMESH::doNothing );
4622
4623   TPythonDump() << "CoincidentFreeBorders = "
4624                 << this << ".FindCoincidentFreeBorders( " << tolerance << " )";
4625
4626   return aCFB._retn();
4627 }
4628
4629 //=======================================================================
4630 /*!
4631  * Sew FreeBorder's of each group
4632  */
4633 //=======================================================================
4634
4635 CORBA::Short SMESH_MeshEditor_i::
4636 SewCoincidentFreeBorders(const SMESH::CoincidentFreeBorders& freeBorders,
4637                          CORBA::Boolean                      createPolygons,
4638                          CORBA::Boolean                      createPolyhedra)
4639   throw (SALOME::SALOME_Exception)
4640 {
4641   CORBA::Short nbSewed = 0;
4642
4643   SMESH_MeshAlgos::TFreeBorderVec groups;
4644   SMESH_MeshAlgos::TFreeBorder    borderNodes; // triples of nodes for every FreeBorderPart
4645
4646   // check the input and collect nodes
4647   for ( CORBA::ULong i = 0; i < freeBorders.coincidentGroups.length(); ++i )
4648   {
4649     borderNodes.clear();
4650     const SMESH::FreeBordersGroup& aGRP = freeBorders.coincidentGroups[ i ];
4651     for ( CORBA::ULong iP = 0; iP < aGRP.length(); ++iP )
4652     {
4653       const SMESH::FreeBorderPart& aPART = aGRP[ iP ];
4654       if ( aPART.border < 0 || aPART.border >= freeBorders.borders.length() )
4655         THROW_SALOME_CORBA_EXCEPTION("Invalid FreeBorderPart::border index", SALOME::BAD_PARAM);
4656
4657       const SMESH::FreeBorder& aBRD = freeBorders.borders[ aPART.border ];
4658
4659       if ( aPART.node1 < 0 || aPART.node1 > aBRD.nodeIDs.length() )
4660         THROW_SALOME_CORBA_EXCEPTION("Invalid FreeBorderPart::node1", SALOME::BAD_PARAM);
4661       if ( aPART.node2 < 0 || aPART.node2 > aBRD.nodeIDs.length() )
4662         THROW_SALOME_CORBA_EXCEPTION("Invalid FreeBorderPart::node2", SALOME::BAD_PARAM);
4663       if ( aPART.nodeLast < 0 || aPART.nodeLast > aBRD.nodeIDs.length() )
4664         THROW_SALOME_CORBA_EXCEPTION("Invalid FreeBorderPart::nodeLast", SALOME::BAD_PARAM);
4665
4666       // do not keep these nodes for further sewing as nodes can be removed by the sewing
4667       const SMDS_MeshNode* n1 = getMeshDS()->FindNode( aBRD.nodeIDs[ aPART.node1    ]);
4668       const SMDS_MeshNode* n2 = getMeshDS()->FindNode( aBRD.nodeIDs[ aPART.node2    ]);
4669       const SMDS_MeshNode* n3 = getMeshDS()->FindNode( aBRD.nodeIDs[ aPART.nodeLast ]);
4670       if ( !n1)
4671         THROW_SALOME_CORBA_EXCEPTION("Nonexistent FreeBorderPart::node1", SALOME::BAD_PARAM);
4672       if ( !n2 )
4673         THROW_SALOME_CORBA_EXCEPTION("Nonexistent FreeBorderPart::node2", SALOME::BAD_PARAM);
4674       if ( !n3 )
4675         THROW_SALOME_CORBA_EXCEPTION("Nonexistent FreeBorderPart::nodeLast", SALOME::BAD_PARAM);
4676
4677       borderNodes.push_back( n1 );
4678       borderNodes.push_back( n2 );
4679       borderNodes.push_back( n3 );
4680     }
4681     groups.push_back( borderNodes );
4682   }
4683
4684   // SewFreeBorder() can merge nodes, thus nodes stored in 'groups' can become dead;
4685   // to get nodes that replace other nodes during merge we create 0D elements
4686   // on each node and MergeNodes() will replace underlying nodes of 0D elements by
4687   // new ones.
4688
4689   vector< const SMDS_MeshElement* > tmp0Delems;
4690   for ( size_t i = 0; i < groups.size(); ++i )
4691   {
4692     SMESH_MeshAlgos::TFreeBorder& nodes = groups[i];
4693     for ( size_t iN = 0; iN < nodes.size(); ++iN )
4694     {
4695       SMDS_ElemIteratorPtr it0D = nodes[iN]->GetInverseElementIterator(SMDSAbs_0DElement);
4696       if ( it0D->more() )
4697         tmp0Delems.push_back( it0D->next() );
4698       else
4699         tmp0Delems.push_back( getMeshDS()->Add0DElement( nodes[iN] ));
4700     }
4701   }
4702
4703   SMESH_TRY;
4704
4705   ::SMESH_MeshEditor::Sew_Error res, ok = ::SMESH_MeshEditor::SEW_OK;
4706   int i0D = 0;
4707   for ( size_t i = 0; i < groups.size(); ++i )
4708   {
4709     bool isBordToBord = true;
4710     bool   groupSewed = false;
4711     SMESH_MeshAlgos::TFreeBorder& nodes = groups[i];
4712     for ( size_t iN = 3; iN+2 < nodes.size(); iN += 3 )
4713     {
4714       const SMDS_MeshNode* n0 = tmp0Delems[ i0D + 0 ]->GetNode( 0 );
4715       const SMDS_MeshNode* n1 = tmp0Delems[ i0D + 1 ]->GetNode( 0 );
4716       const SMDS_MeshNode* n2 = tmp0Delems[ i0D + 2 ]->GetNode( 0 );
4717
4718       const SMDS_MeshNode* n3 = tmp0Delems[ i0D + 0 + iN ]->GetNode( 0 );
4719       const SMDS_MeshNode* n4 = tmp0Delems[ i0D + 1 + iN ]->GetNode( 0 );
4720       const SMDS_MeshNode* n5 = tmp0Delems[ i0D + 2 + iN ]->GetNode( 0 );
4721
4722       if ( !n0 || !n1 || !n2 || !n3 || !n4 || !n5 )
4723         continue;
4724
4725       if ( !isBordToBord )
4726       {
4727         n1 = n2; // at border-to-side sewing only last side node (n1) is needed
4728         n2 = 0;  //  and n2 is not used
4729       }
4730       // 1st border moves to 2nd
4731       res = getEditor().SewFreeBorder( n3, n4, n5 ,// 1st
4732                                        n0 ,n1 ,n2 ,// 2nd
4733                                        /*2ndIsFreeBorder=*/ isBordToBord,
4734                                        createPolygons, createPolyhedra);
4735       groupSewed = ( res == ok );
4736
4737       isBordToBord = false;
4738     }
4739     i0D += nodes.size();
4740     nbSewed += groupSewed;
4741   }
4742
4743   TPythonDump() << "nbSewed = " << this << ".SewCoincidentFreeBorders( "
4744                 << freeBorders     << ", "
4745                 << createPolygons  << ", "
4746                 << createPolyhedra << " )";
4747
4748   SMESH_CATCH( SMESH::doNothing );
4749
4750   declareMeshModified( /*isReComputeSafe=*/false );
4751
4752   // remove tmp 0D elements
4753   SMESH_TRY;
4754   set< const SMDS_MeshElement* > removed0D;
4755   for ( size_t i = 0; i < tmp0Delems.size(); ++i )
4756   {
4757     if ( removed0D.insert( tmp0Delems[i] ).second )
4758       getMeshDS()->RemoveFreeElement( tmp0Delems[i], /*sm=*/0, /*fromGroups=*/false );
4759   }
4760   SMESH_CATCH( SMESH::throwCorbaException );
4761
4762   return nbSewed;
4763 }
4764
4765 //=======================================================================
4766 //function : SewFreeBorders
4767 //purpose  :
4768 //=======================================================================
4769
4770 SMESH::SMESH_MeshEditor::Sew_Error
4771 SMESH_MeshEditor_i::SewFreeBorders(CORBA::Long FirstNodeID1,
4772                                    CORBA::Long SecondNodeID1,
4773                                    CORBA::Long LastNodeID1,
4774                                    CORBA::Long FirstNodeID2,
4775                                    CORBA::Long SecondNodeID2,
4776                                    CORBA::Long LastNodeID2,
4777                                    CORBA::Boolean CreatePolygons,
4778                                    CORBA::Boolean CreatePolyedrs)
4779   throw (SALOME::SALOME_Exception)
4780 {
4781   SMESH_TRY;
4782   initData();
4783
4784   SMESHDS_Mesh* aMesh = getMeshDS();
4785
4786   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeID1  );
4787   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeID1 );
4788   const SMDS_MeshNode* aBorderLastNode   = aMesh->FindNode( LastNodeID1   );
4789   const SMDS_MeshNode* aSide2FirstNode   = aMesh->FindNode( FirstNodeID2  );
4790   const SMDS_MeshNode* aSide2SecondNode  = aMesh->FindNode( SecondNodeID2 );
4791   const SMDS_MeshNode* aSide2ThirdNode   = aMesh->FindNode( LastNodeID2   );
4792
4793   if (!aBorderFirstNode ||
4794       !aBorderSecondNode||
4795       !aBorderLastNode)
4796     return SMESH::SMESH_MeshEditor::SEW_BORDER1_NOT_FOUND;
4797   if (!aSide2FirstNode  ||
4798       !aSide2SecondNode ||
4799       !aSide2ThirdNode)
4800     return SMESH::SMESH_MeshEditor::SEW_BORDER2_NOT_FOUND;
4801
4802   TPythonDump() << "error = " << this << ".SewFreeBorders( "
4803                 << FirstNodeID1  << ", "
4804                 << SecondNodeID1 << ", "
4805                 << LastNodeID1   << ", "
4806                 << FirstNodeID2  << ", "
4807                 << SecondNodeID2 << ", "
4808                 << LastNodeID2   << ", "
4809                 << CreatePolygons<< ", "
4810                 << CreatePolyedrs<< " )";
4811
4812   SMESH::SMESH_MeshEditor::Sew_Error error =
4813     convError( getEditor().SewFreeBorder (aBorderFirstNode,
4814                                           aBorderSecondNode,
4815                                           aBorderLastNode,
4816                                           aSide2FirstNode,
4817                                           aSide2SecondNode,
4818                                           aSide2ThirdNode,
4819                                           true,
4820                                           CreatePolygons,
4821                                           CreatePolyedrs) );
4822
4823
4824   declareMeshModified( /*isReComputeSafe=*/false );
4825   return error;
4826
4827   SMESH_CATCH( SMESH::throwCorbaException );
4828   return SMESH::SMESH_MeshEditor::Sew_Error(0);
4829 }
4830
4831
4832 //=======================================================================
4833 //function : SewConformFreeBorders
4834 //purpose  :
4835 //=======================================================================
4836
4837 SMESH::SMESH_MeshEditor::Sew_Error
4838 SMESH_MeshEditor_i::SewConformFreeBorders(CORBA::Long FirstNodeID1,
4839                                           CORBA::Long SecondNodeID1,
4840                                           CORBA::Long LastNodeID1,
4841                                           CORBA::Long FirstNodeID2,
4842                                           CORBA::Long SecondNodeID2)
4843   throw (SALOME::SALOME_Exception)
4844 {
4845   SMESH_TRY;
4846   initData();
4847
4848   SMESHDS_Mesh* aMesh = getMeshDS();
4849
4850   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeID1  );
4851   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeID1 );
4852   const SMDS_MeshNode* aBorderLastNode   = aMesh->FindNode( LastNodeID1   );
4853   const SMDS_MeshNode* aSide2FirstNode   = aMesh->FindNode( FirstNodeID2  );
4854   const SMDS_MeshNode* aSide2SecondNode  = aMesh->FindNode( SecondNodeID2 );
4855   const SMDS_MeshNode* aSide2ThirdNode   = 0;
4856
4857   if (!aBorderFirstNode ||
4858       !aBorderSecondNode||
4859       !aBorderLastNode )
4860     return SMESH::SMESH_MeshEditor::SEW_BORDER1_NOT_FOUND;
4861   if (!aSide2FirstNode  ||
4862       !aSide2SecondNode)
4863     return SMESH::SMESH_MeshEditor::SEW_BORDER2_NOT_FOUND;
4864
4865   TPythonDump() << "error = " << this << ".SewConformFreeBorders( "
4866                 << FirstNodeID1  << ", "
4867                 << SecondNodeID1 << ", "
4868                 << LastNodeID1   << ", "
4869                 << FirstNodeID2  << ", "
4870                 << SecondNodeID2 << " )";
4871
4872   SMESH::SMESH_MeshEditor::Sew_Error error =
4873     convError( getEditor().SewFreeBorder (aBorderFirstNode,
4874                                           aBorderSecondNode,
4875                                           aBorderLastNode,
4876                                           aSide2FirstNode,
4877                                           aSide2SecondNode,
4878                                           aSide2ThirdNode,
4879                                           true,
4880                                           false, false) );
4881
4882   declareMeshModified( /*isReComputeSafe=*/false );
4883   return error;
4884
4885   SMESH_CATCH( SMESH::throwCorbaException );
4886   return SMESH::SMESH_MeshEditor::Sew_Error(0);
4887 }
4888
4889
4890 //=======================================================================
4891 //function : SewBorderToSide
4892 //purpose  :
4893 //=======================================================================
4894
4895 SMESH::SMESH_MeshEditor::Sew_Error
4896 SMESH_MeshEditor_i::SewBorderToSide(CORBA::Long FirstNodeIDOnFreeBorder,
4897                                     CORBA::Long SecondNodeIDOnFreeBorder,
4898                                     CORBA::Long LastNodeIDOnFreeBorder,
4899                                     CORBA::Long FirstNodeIDOnSide,
4900                                     CORBA::Long LastNodeIDOnSide,
4901                                     CORBA::Boolean CreatePolygons,
4902                                     CORBA::Boolean CreatePolyedrs)
4903   throw (SALOME::SALOME_Exception)
4904 {
4905   SMESH_TRY;
4906   initData();
4907
4908   SMESHDS_Mesh* aMesh = getMeshDS();
4909
4910   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeIDOnFreeBorder  );
4911   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeIDOnFreeBorder );
4912   const SMDS_MeshNode* aBorderLastNode   = aMesh->FindNode( LastNodeIDOnFreeBorder   );
4913   const SMDS_MeshNode* aSide2FirstNode   = aMesh->FindNode( FirstNodeIDOnSide  );
4914   const SMDS_MeshNode* aSide2SecondNode  = aMesh->FindNode( LastNodeIDOnSide );
4915   const SMDS_MeshNode* aSide2ThirdNode   = 0;
4916
4917   if (!aBorderFirstNode ||
4918       !aBorderSecondNode||
4919       !aBorderLastNode  )
4920     return SMESH::SMESH_MeshEditor::SEW_BORDER1_NOT_FOUND;
4921   if (!aSide2FirstNode  ||
4922       !aSide2SecondNode)
4923     return SMESH::SMESH_MeshEditor::SEW_BAD_SIDE_NODES;
4924
4925   TPythonDump() << "error = " << this << ".SewBorderToSide( "
4926                 << FirstNodeIDOnFreeBorder  << ", "
4927                 << SecondNodeIDOnFreeBorder << ", "
4928                 << LastNodeIDOnFreeBorder   << ", "
4929                 << FirstNodeIDOnSide        << ", "
4930                 << LastNodeIDOnSide         << ", "
4931                 << CreatePolygons           << ", "
4932                 << CreatePolyedrs           << ") ";
4933
4934   SMESH::SMESH_MeshEditor::Sew_Error error =
4935     convError( getEditor().SewFreeBorder (aBorderFirstNode,
4936                                           aBorderSecondNode,
4937                                           aBorderLastNode,
4938                                           aSide2FirstNode,
4939                                           aSide2SecondNode,
4940                                           aSide2ThirdNode,
4941                                           false,
4942                                           CreatePolygons,
4943                                           CreatePolyedrs) );
4944
4945   declareMeshModified( /*isReComputeSafe=*/false );
4946   return error;
4947
4948   SMESH_CATCH( SMESH::throwCorbaException );
4949   return SMESH::SMESH_MeshEditor::Sew_Error(0);
4950 }
4951
4952
4953 //=======================================================================
4954 //function : SewSideElements
4955 //purpose  :
4956 //=======================================================================
4957
4958 SMESH::SMESH_MeshEditor::Sew_Error
4959 SMESH_MeshEditor_i::SewSideElements(const SMESH::long_array& IDsOfSide1Elements,
4960                                     const SMESH::long_array& IDsOfSide2Elements,
4961                                     CORBA::Long NodeID1OfSide1ToMerge,
4962                                     CORBA::Long NodeID1OfSide2ToMerge,
4963                                     CORBA::Long NodeID2OfSide1ToMerge,
4964                                     CORBA::Long NodeID2OfSide2ToMerge)
4965   throw (SALOME::SALOME_Exception)
4966 {
4967   SMESH_TRY;
4968   initData();
4969
4970   SMESHDS_Mesh* aMesh = getMeshDS();
4971
4972   const SMDS_MeshNode* aFirstNode1ToMerge  = aMesh->FindNode( NodeID1OfSide1ToMerge );
4973   const SMDS_MeshNode* aFirstNode2ToMerge  = aMesh->FindNode( NodeID1OfSide2ToMerge );
4974   const SMDS_MeshNode* aSecondNode1ToMerge = aMesh->FindNode( NodeID2OfSide1ToMerge );
4975   const SMDS_MeshNode* aSecondNode2ToMerge = aMesh->FindNode( NodeID2OfSide2ToMerge );
4976
4977   if (!aFirstNode1ToMerge ||
4978       !aFirstNode2ToMerge )
4979     return SMESH::SMESH_MeshEditor::SEW_BAD_SIDE1_NODES;
4980   if (!aSecondNode1ToMerge||
4981       !aSecondNode2ToMerge)
4982     return SMESH::SMESH_MeshEditor::SEW_BAD_SIDE2_NODES;
4983
4984   TIDSortedElemSet aSide1Elems, aSide2Elems;
4985   arrayToSet(IDsOfSide1Elements, aMesh, aSide1Elems);
4986   arrayToSet(IDsOfSide2Elements, aMesh, aSide2Elems);
4987
4988   TPythonDump() << "error = " << this << ".SewSideElements( "
4989                 << IDsOfSide1Elements << ", "
4990                 << IDsOfSide2Elements << ", "
4991                 << NodeID1OfSide1ToMerge << ", "
4992                 << NodeID1OfSide2ToMerge << ", "
4993                 << NodeID2OfSide1ToMerge << ", "
4994                 << NodeID2OfSide2ToMerge << ")";
4995
4996   SMESH::SMESH_MeshEditor::Sew_Error error =
4997     convError( getEditor().SewSideElements (aSide1Elems, aSide2Elems,
4998                                          aFirstNode1ToMerge,
4999                                          aFirstNode2ToMerge,
5000                                          aSecondNode1ToMerge,
5001                                          aSecondNode2ToMerge));
5002
5003   declareMeshModified( /*isReComputeSafe=*/false );
5004   return error;
5005
5006   SMESH_CATCH( SMESH::throwCorbaException );
5007   return SMESH::SMESH_MeshEditor::Sew_Error(0);
5008 }
5009
5010 //================================================================================
5011 /*!
5012  * \brief Set new nodes for given element
5013  * \param ide - element id
5014  * \param newIDs - new node ids
5015  * \retval CORBA::Boolean - true if result is OK
5016  */
5017 //================================================================================
5018
5019 CORBA::Boolean SMESH_MeshEditor_i::ChangeElemNodes(CORBA::Long ide,
5020                                                    const SMESH::long_array& newIDs)
5021   throw (SALOME::SALOME_Exception)
5022 {
5023   SMESH_TRY;
5024   initData();
5025
5026   const SMDS_MeshElement* elem = getMeshDS()->FindElement(ide);
5027   if(!elem) return false;
5028
5029   int nbn = newIDs.length();
5030   int i=0;
5031   vector<const SMDS_MeshNode*> aNodes(nbn);
5032   int nbn1=-1;
5033   for(; i<nbn; i++) {
5034     const SMDS_MeshNode* aNode = getMeshDS()->FindNode(newIDs[i]);
5035     if(aNode) {
5036       nbn1++;
5037       aNodes[nbn1] = aNode;
5038     }
5039   }
5040   TPythonDump() << "isDone = " << this << ".ChangeElemNodes( "
5041                 << ide << ", " << newIDs << " )";
5042
5043   MESSAGE("ChangeElementNodes");
5044   bool res = getMeshDS()->ChangeElementNodes( elem, & aNodes[0], nbn1+1 );
5045
5046   declareMeshModified( /*isReComputeSafe=*/ !res );
5047
5048   return res;
5049
5050   SMESH_CATCH( SMESH::throwCorbaException );
5051   return 0;
5052 }
5053
5054 //=======================================================================
5055 /*!
5056  * \brief Makes a part of the mesh quadratic or bi-quadratic
5057  */
5058 //=======================================================================
5059
5060 void SMESH_MeshEditor_i::convertToQuadratic(CORBA::Boolean            theForce3d,
5061                                             CORBA::Boolean            theToBiQuad,
5062                                             SMESH::SMESH_IDSource_ptr theObject)
5063   throw (SALOME::SALOME_Exception)
5064 {
5065   SMESH_TRY;
5066   initData();
5067
5068   TIDSortedElemSet elems;
5069   bool elemsOK;
5070   if ( !( elemsOK = CORBA::is_nil( theObject )))
5071   {
5072     elemsOK =  idSourceToSet( theObject, getMeshDS(), elems,
5073                               SMDSAbs_All, /*emptyIfIsMesh=*/true );
5074   }
5075   if ( elemsOK )
5076   {
5077     if ( !elems.empty() && (*elems.begin())->GetType() == SMDSAbs_Node )
5078       THROW_SALOME_CORBA_EXCEPTION("Group of nodes is not allowed", SALOME::BAD_PARAM);
5079
5080     if ( elems.empty() ) getEditor().ConvertToQuadratic(theForce3d, theToBiQuad);
5081     else                 getEditor().ConvertToQuadratic(theForce3d, elems, theToBiQuad);
5082
5083     declareMeshModified( /*isReComputeSafe=*/false );
5084   }
5085
5086   SMESH_CATCH( SMESH::throwCorbaException );
5087 }
5088
5089 //=======================================================================
5090 //function : ConvertFromQuadratic
5091 //purpose  :
5092 //=======================================================================
5093
5094 CORBA::Boolean SMESH_MeshEditor_i::ConvertFromQuadratic()
5095   throw (SALOME::SALOME_Exception)
5096 {
5097   SMESH_TRY;
5098   initData();
5099
5100   CORBA::Boolean isDone = getEditor().ConvertFromQuadratic();
5101   TPythonDump() << this << ".ConvertFromQuadratic()";
5102   declareMeshModified( /*isReComputeSafe=*/!isDone );
5103   return isDone;
5104
5105   SMESH_CATCH( SMESH::throwCorbaException );
5106   return false;
5107 }
5108
5109 //=======================================================================
5110 //function : ConvertToQuadratic
5111 //purpose  :
5112 //=======================================================================
5113
5114 void SMESH_MeshEditor_i::ConvertToQuadratic(CORBA::Boolean theForce3d)
5115   throw (SALOME::SALOME_Exception)
5116 {
5117   convertToQuadratic( theForce3d, false );
5118   TPythonDump() << this << ".ConvertToQuadratic("<<theForce3d<<")";
5119 }
5120
5121 //================================================================================
5122 /*!
5123  * \brief Makes a part of the mesh quadratic
5124  */
5125 //================================================================================
5126
5127 void SMESH_MeshEditor_i::ConvertToQuadraticObject(CORBA::Boolean            theForce3d,
5128                                                   SMESH::SMESH_IDSource_ptr theObject)
5129   throw (SALOME::SALOME_Exception)
5130 {
5131   convertToQuadratic( theForce3d, false, theObject );
5132   TPythonDump() << this << ".ConvertToQuadraticObject("<<theForce3d<<", "<<theObject<<")";
5133 }
5134
5135 //================================================================================
5136 /*!
5137  * \brief Makes a part of the mesh bi-quadratic
5138  */
5139 //================================================================================
5140
5141 void SMESH_MeshEditor_i::ConvertToBiQuadratic(CORBA::Boolean            theForce3d,
5142                                               SMESH::SMESH_IDSource_ptr theObject)
5143   throw (SALOME::SALOME_Exception)
5144 {
5145   convertToQuadratic( theForce3d, true, theObject );
5146   TPythonDump() << this << ".ConvertToBiQuadratic("<<theForce3d<<", "<<theObject<<")";
5147 }
5148
5149 //================================================================================
5150 /*!
5151  * \brief Makes a part of the mesh linear
5152  */
5153 //================================================================================
5154
5155 void SMESH_MeshEditor_i::ConvertFromQuadraticObject(SMESH::SMESH_IDSource_ptr theObject)
5156   throw (SALOME::SALOME_Exception)
5157 {
5158   SMESH_TRY;
5159   initData();
5160
5161   TPythonDump pyDump;
5162
5163   TIDSortedElemSet elems;
5164   if ( idSourceToSet( theObject, getMeshDS(), elems, SMDSAbs_All, /*emptyIfIsMesh=*/true ))
5165   {
5166     if ( elems.empty() )
5167     {
5168       ConvertFromQuadratic();
5169     }
5170     else if ( (*elems.begin())->GetType() == SMDSAbs_Node )
5171     {
5172       THROW_SALOME_CORBA_EXCEPTION("Group of nodes is not allowed", SALOME::BAD_PARAM);
5173     }
5174     else
5175     {
5176       getEditor().ConvertFromQuadratic(elems);
5177     }
5178   }
5179   declareMeshModified( /*isReComputeSafe=*/false );
5180
5181   pyDump << this << ".ConvertFromQuadraticObject( "<<theObject<<" )";
5182
5183   SMESH_CATCH( SMESH::throwCorbaException );
5184 }
5185
5186 //=======================================================================
5187 //function : makeMesh
5188 //purpose  : create a named imported mesh
5189 //=======================================================================
5190
5191 SMESH::SMESH_Mesh_ptr SMESH_MeshEditor_i::makeMesh(const char* theMeshName)
5192 {
5193   SMESH_Gen_i*              gen = SMESH_Gen_i::GetSMESHGen();
5194   SMESH::SMESH_Mesh_var    mesh = gen->CreateEmptyMesh();
5195   SALOMEDS::Study_var     study = gen->GetCurrentStudy();
5196   SALOMEDS::SObject_wrap meshSO = gen->ObjectToSObject( study, mesh );
5197   gen->SetName( meshSO, theMeshName, "Mesh" );
5198   gen->SetPixMap( meshSO, "ICON_SMESH_TREE_MESH_IMPORTED");
5199
5200   return mesh._retn();
5201 }
5202
5203 //=======================================================================
5204 //function : dumpGroupsList
5205 //purpose  :
5206 //=======================================================================
5207
5208 void SMESH_MeshEditor_i::dumpGroupsList(TPythonDump &               theDumpPython,
5209                                         const SMESH::ListOfGroups * theGroupList)
5210 {
5211   bool isDumpGroupList = ( theGroupList && theGroupList->length() > 0 );
5212   if ( isDumpGroupList )
5213     theDumpPython << theGroupList << " = ";
5214 }
5215
5216 //================================================================================
5217 /*!
5218   \brief Generates the unique group name.
5219   \param thePrefix name prefix
5220   \return unique name
5221 */
5222 //================================================================================
5223
5224 string SMESH_MeshEditor_i::generateGroupName(const string& thePrefix)
5225 {
5226   SMESH::ListOfGroups_var groups = myMesh_i->GetGroups();
5227   set<string> groupNames;
5228
5229   // Get existing group names
5230   for (int i = 0, nbGroups = groups->length(); i < nbGroups; i++ ) {
5231     SMESH::SMESH_GroupBase_var aGroup = groups[i];
5232     if (CORBA::is_nil(aGroup))
5233       continue;
5234
5235     CORBA::String_var name = aGroup->GetName();
5236     groupNames.insert( name.in() );
5237   }
5238
5239   // Find new name
5240   string name = thePrefix;
5241   int index = 0;
5242
5243   while (!groupNames.insert(name).second)
5244     name = SMESH_Comment( thePrefix ) << "_" << index++;
5245
5246   return name;
5247 }
5248
5249 //================================================================================
5250 /*!
5251  * \brief Prepare SMESH_IDSource for work
5252  */
5253 //================================================================================
5254
5255 void SMESH_MeshEditor_i::prepareIdSource(SMESH::SMESH_IDSource_ptr theObject)
5256 {
5257   if ( SMESH::Filter_i* filter = SMESH::DownCast<SMESH::Filter_i*>( theObject ))
5258   {
5259     SMESH::SMESH_Mesh_var mesh = myMesh_i->_this();
5260     filter->SetMesh( mesh );
5261   }
5262 }
5263 //================================================================================
5264 /*!
5265  * \brief Retrieve elements of given type from SMESH_IDSource
5266  */
5267 //================================================================================
5268
5269 bool SMESH_MeshEditor_i::idSourceToSet(SMESH::SMESH_IDSource_ptr  theIDSource,
5270                                        const SMESHDS_Mesh*        theMeshDS,
5271                                        TIDSortedElemSet&          theElemSet,
5272                                        const SMDSAbs_ElementType  theType,
5273                                        const bool                 emptyIfIsMesh,
5274                                        IDSource_Error*            error)
5275
5276 {
5277   if ( error ) *error = IDSource_OK;
5278
5279   if ( CORBA::is_nil( theIDSource ) )
5280   {
5281     if ( error ) *error = IDSource_INVALID;
5282     return false;
5283   }
5284   if ( emptyIfIsMesh && SMESH::DownCast<SMESH_Mesh_i*>( theIDSource ))
5285   {
5286     if ( error && getMeshDS()->GetMeshInfo().NbElements( theType ) == 0 )
5287       *error = IDSource_EMPTY;
5288     return true;
5289   }
5290   prepareIdSource( theIDSource );
5291   SMESH::long_array_var anIDs = theIDSource->GetIDs();
5292   if ( anIDs->length() == 0 )
5293   {
5294     if ( error ) *error = IDSource_EMPTY;
5295     return false;
5296   }
5297   SMESH::array_of_ElementType_var types = theIDSource->GetTypes();
5298   if ( types->length() == 1 && types[0] == SMESH::NODE ) // group of nodes
5299   {
5300     if ( theType == SMDSAbs_All || theType == SMDSAbs_Node )
5301     {
5302       arrayToSet( anIDs, getMeshDS(), theElemSet, SMDSAbs_Node );
5303     }
5304     else
5305     {
5306       if ( error ) *error = IDSource_INVALID;
5307       return false;
5308     }
5309   }
5310   else
5311   {
5312     arrayToSet( anIDs, getMeshDS(), theElemSet, theType);
5313     if ( bool(anIDs->length()) != bool(theElemSet.size()))
5314     {
5315       if ( error ) *error = IDSource_INVALID;
5316       return false;
5317     }
5318   }
5319   return true;
5320 }
5321
5322 //================================================================================
5323 /*!
5324  * \brief Duplicates given elements, i.e. creates new elements based on the
5325  *        same nodes as the given ones.
5326  * \param theElements - container of elements to duplicate.
5327  * \param theGroupName - a name of group to contain the generated elements.
5328  *                    If a group with such a name already exists, the new elements
5329  *                    are added to the existng group, else a new group is created.
5330  *                    If \a theGroupName is empty, new elements are not added 
5331  *                    in any group.
5332  * \return a group where the new elements are added. NULL if theGroupName == "".
5333  * \sa DoubleNode()
5334  */
5335 //================================================================================
5336
5337 SMESH::SMESH_Group_ptr
5338 SMESH_MeshEditor_i::DoubleElements(SMESH::SMESH_IDSource_ptr theElements,
5339                                    const char*               theGroupName)
5340   throw (SALOME::SALOME_Exception)
5341 {
5342   SMESH::SMESH_Group_var newGroup;
5343
5344   SMESH_TRY;
5345   initData();
5346
5347   TPythonDump pyDump;
5348
5349   TIDSortedElemSet elems;
5350   if ( idSourceToSet( theElements, getMeshDS(), elems, SMDSAbs_All, /*emptyIfIsMesh=*/true))
5351   {
5352     getEditor().DoubleElements( elems );
5353
5354     if ( strlen( theGroupName ) && !getEditor().GetLastCreatedElems().IsEmpty() )
5355     {
5356       // group type
5357       SMESH::ElementType type =
5358         SMESH::ElementType( getEditor().GetLastCreatedElems().Value(1)->GetType() );
5359       // find existing group
5360       SMESH::ListOfGroups_var groups = myMesh_i->GetGroups();
5361       for ( size_t i = 0; i < groups->length(); ++i )
5362         if ( groups[i]->GetType() == type )
5363         {
5364           CORBA::String_var name = groups[i]->GetName();
5365           if ( strcmp( name, theGroupName ) == 0 ) {
5366             newGroup = SMESH::SMESH_Group::_narrow( groups[i] );
5367             break;
5368           }
5369         }
5370       // create a new group
5371       if ( newGroup->_is_nil() )
5372         newGroup = myMesh_i->CreateGroup( type, theGroupName );
5373       // fill newGroup
5374       if ( SMESH_Group_i* group_i = SMESH::DownCast< SMESH_Group_i* >( newGroup ))
5375       {
5376         SMESHDS_Group* groupDS = static_cast< SMESHDS_Group* >( group_i->GetGroupDS() );
5377         const SMESH_SequenceOfElemPtr& aSeq = getEditor().GetLastCreatedElems();
5378         for ( int i = 1; i <= aSeq.Length(); i++ )
5379           groupDS->SMDSGroup().Add( aSeq(i) );
5380       }
5381     }
5382   }
5383   // python dump
5384   if ( !newGroup->_is_nil() )
5385     pyDump << newGroup << " = ";
5386   pyDump << this << ".DoubleElements( "
5387          << theElements << ", " << "'" << theGroupName <<"')";
5388
5389   SMESH_CATCH( SMESH::throwCorbaException );
5390
5391   return newGroup._retn();
5392 }
5393
5394 //================================================================================
5395 /*!
5396   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5397   \param theNodes - identifiers of nodes to be doubled
5398   \param theModifiedElems - identifiers of elements to be updated by the new (doubled)
5399          nodes. If list of element identifiers is empty then nodes are doubled but
5400          they not assigned to elements
5401   \return TRUE if operation has been completed successfully, FALSE otherwise
5402   \sa DoubleNode(), DoubleNodeGroup(), DoubleNodeGroups()
5403 */
5404 //================================================================================
5405
5406 CORBA::Boolean SMESH_MeshEditor_i::DoubleNodes( const SMESH::long_array& theNodes,
5407                                                 const SMESH::long_array& theModifiedElems )
5408   throw (SALOME::SALOME_Exception)
5409 {
5410   SMESH_TRY;
5411   initData();
5412
5413   list< int > aListOfNodes;
5414   int i, n;
5415   for ( i = 0, n = theNodes.length(); i < n; i++ )
5416     aListOfNodes.push_back( theNodes[ i ] );
5417
5418   list< int > aListOfElems;
5419   for ( i = 0, n = theModifiedElems.length(); i < n; i++ )
5420     aListOfElems.push_back( theModifiedElems[ i ] );
5421
5422   bool aResult = getEditor().DoubleNodes( aListOfNodes, aListOfElems );
5423
5424   declareMeshModified( /*isReComputeSafe=*/ !aResult );
5425
5426   // Update Python script
5427   TPythonDump() << this << ".DoubleNodes( " << theNodes << ", "<< theModifiedElems << " )";
5428
5429   return aResult;
5430
5431   SMESH_CATCH( SMESH::throwCorbaException );
5432   return 0;
5433 }
5434
5435 //================================================================================
5436 /*!
5437   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5438   This method provided for convenience works as DoubleNodes() described above.
5439   \param theNodeId - identifier of node to be doubled.
5440   \param theModifiedElems - identifiers of elements to be updated.
5441   \return TRUE if operation has been completed successfully, FALSE otherwise
5442   \sa DoubleNodes(), DoubleNodeGroup(), DoubleNodeGroups()
5443 */
5444 //================================================================================
5445
5446 CORBA::Boolean SMESH_MeshEditor_i::DoubleNode( CORBA::Long              theNodeId,
5447                                                const SMESH::long_array& theModifiedElems )
5448   throw (SALOME::SALOME_Exception)
5449 {
5450   SMESH_TRY;
5451   SMESH::long_array_var aNodes = new SMESH::long_array;
5452   aNodes->length( 1 );
5453   aNodes[ 0 ] = theNodeId;
5454
5455   TPythonDump pyDump; // suppress dump by the next line
5456
5457   CORBA::Boolean done = DoubleNodes( aNodes, theModifiedElems );
5458
5459   pyDump << this << ".DoubleNode( " << theNodeId << ", " << theModifiedElems << " )";
5460
5461   return done;
5462
5463   SMESH_CATCH( SMESH::throwCorbaException );
5464   return 0;
5465 }
5466
5467 //================================================================================
5468 /*!
5469   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5470   This method provided for convenience works as DoubleNodes() described above.
5471   \param theNodes - group of nodes to be doubled.
5472   \param theModifiedElems - group of elements to be updated.
5473   \return TRUE if operation has been completed successfully, FALSE otherwise
5474   \sa DoubleNode(), DoubleNodes(), DoubleNodeGroups()
5475 */
5476 //================================================================================
5477
5478 CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeGroup(SMESH::SMESH_GroupBase_ptr theNodes,
5479                                                    SMESH::SMESH_GroupBase_ptr theModifiedElems )
5480   throw (SALOME::SALOME_Exception)
5481 {
5482   SMESH_TRY;
5483   if ( CORBA::is_nil( theNodes ) && theNodes->GetType() != SMESH::NODE )
5484     return false;
5485
5486   SMESH::long_array_var aNodes = theNodes->GetListOfID();
5487   SMESH::long_array_var aModifiedElems;
5488   if ( !CORBA::is_nil( theModifiedElems ) )
5489     aModifiedElems = theModifiedElems->GetListOfID();
5490   else
5491   {
5492     aModifiedElems = new SMESH::long_array;
5493     aModifiedElems->length( 0 );
5494   }
5495
5496   TPythonDump pyDump; // suppress dump by the next line
5497
5498   bool done = DoubleNodes( aNodes, aModifiedElems );
5499
5500   pyDump << this << ".DoubleNodeGroup( " << theNodes << ", " << theModifiedElems << " )";
5501
5502   return done;
5503
5504   SMESH_CATCH( SMESH::throwCorbaException );
5505   return 0;
5506 }
5507
5508 //================================================================================
5509 /*!
5510  * \brief Creates a hole in a mesh by doubling the nodes of some particular elements.
5511  * Works as DoubleNodeGroup(), but returns a new group with newly created nodes.
5512  * \param theNodes - group of nodes to be doubled.
5513  * \param theModifiedElems - group of elements to be updated.
5514  * \return a new group with newly created nodes
5515  * \sa DoubleNodeGroup()
5516  */
5517 //================================================================================
5518
5519 SMESH::SMESH_Group_ptr
5520 SMESH_MeshEditor_i::DoubleNodeGroupNew( SMESH::SMESH_GroupBase_ptr theNodes,
5521                                         SMESH::SMESH_GroupBase_ptr theModifiedElems )
5522   throw (SALOME::SALOME_Exception)
5523 {
5524   SMESH_TRY;
5525   SMESH::SMESH_Group_var aNewGroup;
5526
5527   if ( CORBA::is_nil( theNodes ) && theNodes->GetType() != SMESH::NODE )
5528     return aNewGroup._retn();
5529
5530   // Duplicate nodes
5531   SMESH::long_array_var aNodes = theNodes->GetListOfID();
5532   SMESH::long_array_var aModifiedElems;
5533   if ( !CORBA::is_nil( theModifiedElems ) )
5534     aModifiedElems = theModifiedElems->GetListOfID();
5535   else {
5536     aModifiedElems = new SMESH::long_array;
5537     aModifiedElems->length( 0 );
5538   }
5539
5540   TPythonDump pyDump; // suppress dump by the next line
5541
5542   bool aResult = DoubleNodes( aNodes, aModifiedElems );
5543   if ( aResult )
5544   {
5545     // Create group with newly created nodes
5546     SMESH::long_array_var anIds = GetLastCreatedNodes();
5547     if (anIds->length() > 0) {
5548       string anUnindexedName (theNodes->GetName());
5549       string aNewName = generateGroupName(anUnindexedName + "_double");
5550       aNewGroup = myMesh_i->CreateGroup(SMESH::NODE, aNewName.c_str());
5551       aNewGroup->Add(anIds);
5552       pyDump << aNewGroup << " = ";
5553     }
5554   }
5555
5556   pyDump << this << ".DoubleNodeGroupNew( " << theNodes << ", "
5557          << theModifiedElems << " )";
5558
5559   return aNewGroup._retn();
5560
5561   SMESH_CATCH( SMESH::throwCorbaException );
5562   return 0;
5563 }
5564
5565 //================================================================================
5566 /*!
5567   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5568   This method provided for convenience works as DoubleNodes() described above.
5569   \param theNodes - list of groups of nodes to be doubled
5570   \param theModifiedElems - list of groups of elements to be updated.
5571   \return TRUE if operation has been completed successfully, FALSE otherwise
5572   \sa DoubleNode(), DoubleNodeGroup(), DoubleNodes()
5573 */
5574 //================================================================================
5575
5576 CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeGroups(const SMESH::ListOfGroups& theNodes,
5577                                                     const SMESH::ListOfGroups& theModifiedElems )
5578   throw (SALOME::SALOME_Exception)
5579 {
5580   SMESH_TRY;
5581   initData();
5582
5583   std::list< int > aNodes;
5584   int i, n, j, m;
5585   for ( i = 0, n = theNodes.length(); i < n; i++ )
5586   {
5587     SMESH::SMESH_GroupBase_var aGrp = theNodes[ i ];
5588     if ( !CORBA::is_nil( aGrp ) && aGrp->GetType() == SMESH::NODE )
5589     {
5590       SMESH::long_array_var aCurr = aGrp->GetListOfID();
5591       for ( j = 0, m = aCurr->length(); j < m; j++ )
5592         aNodes.push_back( aCurr[ j ] );
5593     }
5594   }
5595
5596   std::list< int > anElems;
5597   for ( i = 0, n = theModifiedElems.length(); i < n; i++ )
5598   {
5599     SMESH::SMESH_GroupBase_var aGrp = theModifiedElems[ i ];
5600     if ( !CORBA::is_nil( aGrp ) && aGrp->GetType() != SMESH::NODE )
5601     {
5602       SMESH::long_array_var aCurr = aGrp->GetListOfID();
5603       for ( j = 0, m = aCurr->length(); j < m; j++ )
5604         anElems.push_back( aCurr[ j ] );
5605     }
5606   }
5607
5608   bool aResult = getEditor().DoubleNodes( aNodes, anElems );
5609
5610   declareMeshModified( /*isReComputeSafe=*/false );
5611
5612   TPythonDump() << this << ".DoubleNodeGroups( " << theNodes << ", " << theModifiedElems << " )";
5613
5614   return aResult;
5615
5616   SMESH_CATCH( SMESH::throwCorbaException );
5617   return 0;
5618 }
5619
5620 //================================================================================
5621 /*!
5622  * \brief Creates a hole in a mesh by doubling the nodes of some particular elements.
5623  * Works as DoubleNodeGroups(), but returns a new group with newly created nodes.
5624  * \param theNodes - group of nodes to be doubled.
5625  * \param theModifiedElems - group of elements to be updated.
5626  * \return a new group with newly created nodes
5627  * \sa DoubleNodeGroups()
5628  */
5629 //================================================================================
5630
5631 SMESH::SMESH_Group_ptr
5632 SMESH_MeshEditor_i::DoubleNodeGroupsNew( const SMESH::ListOfGroups& theNodes,
5633                                          const SMESH::ListOfGroups& theModifiedElems )
5634   throw (SALOME::SALOME_Exception)
5635 {
5636   SMESH::SMESH_Group_var aNewGroup;
5637
5638   TPythonDump pyDump; // suppress dump by the next line
5639
5640   bool aResult = DoubleNodeGroups( theNodes, theModifiedElems );
5641
5642   if ( aResult )
5643   {
5644     // Create group with newly created nodes
5645     SMESH::long_array_var anIds = GetLastCreatedNodes();
5646     if (anIds->length() > 0) {
5647       string anUnindexedName (theNodes[0]->GetName());
5648       string aNewName = generateGroupName(anUnindexedName + "_double");
5649       aNewGroup = myMesh_i->CreateGroup(SMESH::NODE, aNewName.c_str());
5650       aNewGroup->Add(anIds);
5651       pyDump << aNewGroup << " = ";
5652     }
5653   }
5654
5655   pyDump << this << ".DoubleNodeGroupsNew( " << theNodes << ", "
5656          << theModifiedElems << " )";
5657
5658   return aNewGroup._retn();
5659 }
5660
5661
5662 //================================================================================
5663 /*!
5664   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5665   \param theElems - the list of elements (edges or faces) to be replicated
5666   The nodes for duplication could be found from these elements
5667   \param theNodesNot - list of nodes to NOT replicate
5668   \param theAffectedElems - the list of elements (cells and edges) to which the
5669   replicated nodes should be associated to.
5670   \return TRUE if operation has been completed successfully, FALSE otherwise
5671   \sa DoubleNodeGroup(), DoubleNodeGroups()
5672 */
5673 //================================================================================
5674
5675 CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeElem( const SMESH::long_array& theElems,
5676                                                    const SMESH::long_array& theNodesNot,
5677                                                    const SMESH::long_array& theAffectedElems )
5678   throw (SALOME::SALOME_Exception)
5679 {
5680   SMESH_TRY;
5681   initData();
5682
5683   SMESHDS_Mesh* aMeshDS = getMeshDS();
5684   TIDSortedElemSet anElems, aNodes, anAffected;
5685   arrayToSet(theElems, aMeshDS, anElems, SMDSAbs_All);
5686   arrayToSet(theNodesNot, aMeshDS, aNodes, SMDSAbs_Node);
5687   arrayToSet(theAffectedElems, aMeshDS, anAffected, SMDSAbs_All);
5688
5689   bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
5690
5691   // Update Python script
5692   TPythonDump() << this << ".DoubleNodeElem( " << theElems << ", "
5693                 << theNodesNot << ", " << theAffectedElems << " )";
5694
5695   declareMeshModified( /*isReComputeSafe=*/false );
5696   return aResult;
5697
5698   SMESH_CATCH( SMESH::throwCorbaException );
5699   return 0;
5700 }
5701
5702 //================================================================================
5703 /*!
5704   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5705   \param theElems - the list of elements (edges or faces) to be replicated
5706   The nodes for duplication could be found from these elements
5707   \param theNodesNot - list of nodes to NOT replicate
5708   \param theShape - shape to detect affected elements (element which geometric center
5709   located on or inside shape).
5710   The replicated nodes should be associated to affected elements.
5711   \return TRUE if operation has been completed successfully, FALSE otherwise
5712   \sa DoubleNodeGroupInRegion(), DoubleNodeGroupsInRegion()
5713 */
5714 //================================================================================
5715
5716 CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeElemInRegion ( const SMESH::long_array& theElems,
5717                                                             const SMESH::long_array& theNodesNot,
5718                                                             GEOM::GEOM_Object_ptr    theShape )
5719   throw (SALOME::SALOME_Exception)
5720 {
5721   SMESH_TRY;
5722   initData();
5723
5724
5725   SMESHDS_Mesh* aMeshDS = getMeshDS();
5726   TIDSortedElemSet anElems, aNodes;
5727   arrayToSet(theElems, aMeshDS, anElems, SMDSAbs_All);
5728   arrayToSet(theNodesNot, aMeshDS, aNodes, SMDSAbs_Node);
5729
5730   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theShape );
5731   bool aResult = getEditor().DoubleNodesInRegion( anElems, aNodes, aShape );
5732
5733   // Update Python script
5734   TPythonDump() << "isDone = " << this << ".DoubleNodeElemInRegion( " << theElems << ", "
5735                 << theNodesNot << ", " << theShape << " )";
5736
5737   declareMeshModified( /*isReComputeSafe=*/false );
5738   return aResult;
5739
5740   SMESH_CATCH( SMESH::throwCorbaException );
5741   return 0;
5742 }
5743
5744 //================================================================================
5745 /*!
5746   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5747   \param theElems - group of of elements (edges or faces) to be replicated
5748   \param theNodesNot - group of nodes not to replicated
5749   \param theAffectedElems - group of elements to which the replicated nodes
5750   should be associated to.
5751   \return TRUE if operation has been completed successfully, FALSE otherwise
5752   \sa DoubleNodes(), DoubleNodeGroups()
5753 */
5754 //================================================================================
5755
5756 CORBA::Boolean
5757 SMESH_MeshEditor_i::DoubleNodeElemGroup(SMESH::SMESH_GroupBase_ptr theElems,
5758                                         SMESH::SMESH_GroupBase_ptr theNodesNot,
5759                                         SMESH::SMESH_GroupBase_ptr theAffectedElems)
5760   throw (SALOME::SALOME_Exception)
5761 {
5762   SMESH_TRY;
5763   if ( CORBA::is_nil( theElems ) && theElems->GetType() == SMESH::NODE )
5764     return false;
5765
5766   initData();
5767
5768
5769   SMESHDS_Mesh* aMeshDS = getMeshDS();
5770   TIDSortedElemSet anElems, aNodes, anAffected;
5771   idSourceToSet( theElems, aMeshDS, anElems, SMDSAbs_All );
5772   idSourceToSet( theNodesNot, aMeshDS, aNodes, SMDSAbs_Node );
5773   idSourceToSet( theAffectedElems, aMeshDS, anAffected, SMDSAbs_All );
5774
5775   bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
5776
5777   // Update Python script
5778   TPythonDump() << "isDone = " << this << ".DoubleNodeElemGroup( " << theElems << ", "
5779                 << theNodesNot << ", " << theAffectedElems << " )";
5780
5781   declareMeshModified( /*isReComputeSafe=*/false );
5782   return aResult;
5783
5784   SMESH_CATCH( SMESH::throwCorbaException );
5785   return 0;
5786 }
5787
5788 //================================================================================
5789 /*!
5790  * \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5791  * Works as DoubleNodeElemGroup(), but returns a new group with newly created elements.
5792  * \param theElems - group of of elements (edges or faces) to be replicated
5793  * \param theNodesNot - group of nodes not to replicated
5794  * \param theAffectedElems - group of elements to which the replicated nodes
5795  *        should be associated to.
5796  * \return a new group with newly created elements
5797  * \sa DoubleNodeElemGroup()
5798  */
5799 //================================================================================
5800
5801 SMESH::SMESH_Group_ptr
5802 SMESH_MeshEditor_i::DoubleNodeElemGroupNew(SMESH::SMESH_GroupBase_ptr theElems,
5803                                            SMESH::SMESH_GroupBase_ptr theNodesNot,
5804                                            SMESH::SMESH_GroupBase_ptr theAffectedElems)
5805   throw (SALOME::SALOME_Exception)
5806 {
5807   TPythonDump pyDump;
5808   SMESH::ListOfGroups_var twoGroups = DoubleNodeElemGroup2New( theElems,
5809                                                                theNodesNot,
5810                                                                theAffectedElems,
5811                                                                true, false );
5812   SMESH::SMESH_GroupBase_var baseGroup = twoGroups[0].in();
5813   SMESH::SMESH_Group_var     elemGroup = SMESH::SMESH_Group::_narrow( baseGroup );
5814
5815   pyDump << elemGroup << " = " << this << ".DoubleNodeElemGroupNew( "
5816          << theElems         << ", "
5817          << theNodesNot      << ", "
5818          << theAffectedElems << " )";
5819
5820   return elemGroup._retn();
5821 }
5822
5823 //================================================================================
5824 /*!
5825  * \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5826  * Works as DoubleNodeElemGroup(), but returns a new group with newly created elements.
5827  * \param theElems - group of of elements (edges or faces) to be replicated
5828  * \param theNodesNot - group of nodes not to replicated
5829  * \param theAffectedElems - group of elements to which the replicated nodes
5830  *        should be associated to.
5831  * \return a new group with newly created elements
5832  * \sa DoubleNodeElemGroup()
5833  */
5834 //================================================================================
5835
5836 SMESH::ListOfGroups*
5837 SMESH_MeshEditor_i::DoubleNodeElemGroup2New(SMESH::SMESH_GroupBase_ptr theElems,
5838                                             SMESH::SMESH_GroupBase_ptr theNodesNot,
5839                                             SMESH::SMESH_GroupBase_ptr theAffectedElems,
5840                                             CORBA::Boolean             theElemGroupNeeded,
5841                                             CORBA::Boolean             theNodeGroupNeeded)
5842   throw (SALOME::SALOME_Exception)
5843 {
5844   SMESH_TRY;
5845   SMESH::SMESH_Group_var aNewElemGroup, aNewNodeGroup;
5846   SMESH::ListOfGroups_var aTwoGroups = new SMESH::ListOfGroups();
5847   aTwoGroups->length( 2 );
5848
5849   if ( CORBA::is_nil( theElems ) && theElems->GetType() == SMESH::NODE )
5850     return aTwoGroups._retn();
5851
5852   initData();
5853
5854
5855   SMESHDS_Mesh* aMeshDS = getMeshDS();
5856   TIDSortedElemSet anElems, aNodes, anAffected;
5857   idSourceToSet( theElems, aMeshDS, anElems, SMDSAbs_All );
5858   idSourceToSet( theNodesNot, aMeshDS, aNodes, SMDSAbs_Node );
5859   idSourceToSet( theAffectedElems, aMeshDS, anAffected, SMDSAbs_All );
5860
5861
5862   bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
5863
5864   declareMeshModified( /*isReComputeSafe=*/ !aResult );
5865
5866   TPythonDump pyDump;
5867
5868   if ( aResult )
5869   {
5870     // Create group with newly created elements
5871     CORBA::String_var elemGroupName = theElems->GetName();
5872     string aNewName = generateGroupName( string(elemGroupName.in()) + "_double");
5873     if ( !getEditor().GetLastCreatedElems().IsEmpty() && theElemGroupNeeded )
5874     {
5875       SMESH::long_array_var anIds = GetLastCreatedElems();
5876       SMESH::ElementType aGroupType = myMesh_i->GetElementType(anIds[0], true);
5877       aNewElemGroup = myMesh_i->CreateGroup(aGroupType, aNewName.c_str());
5878       aNewElemGroup->Add(anIds);
5879     }
5880     if ( !getEditor().GetLastCreatedNodes().IsEmpty() && theNodeGroupNeeded )
5881     {
5882       SMESH::long_array_var anIds = GetLastCreatedNodes();
5883       aNewNodeGroup = myMesh_i->CreateGroup(SMESH::NODE, aNewName.c_str());
5884       aNewNodeGroup->Add(anIds);
5885     }
5886   }
5887
5888   // Update Python script
5889
5890   pyDump << "[ ";
5891   if ( aNewElemGroup->_is_nil() ) pyDump << "nothing, ";
5892   else                            pyDump << aNewElemGroup << ", ";
5893   if ( aNewNodeGroup->_is_nil() ) pyDump << "nothing ] = ";
5894   else                            pyDump << aNewNodeGroup << " ] = ";
5895
5896   pyDump << this << ".DoubleNodeElemGroup2New( " << theElems << ", "
5897          << theNodesNot        << ", "
5898          << theAffectedElems   << ", "
5899          << theElemGroupNeeded << ", "
5900          << theNodeGroupNeeded <<" )";
5901
5902   aTwoGroups[0] = aNewElemGroup._retn();
5903   aTwoGroups[1] = aNewNodeGroup._retn();
5904   return aTwoGroups._retn();
5905
5906   SMESH_CATCH( SMESH::throwCorbaException );
5907   return 0;
5908 }
5909
5910 //================================================================================
5911 /*!
5912   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
5913   \param theElems - group of of elements (edges or faces) to be replicated
5914   \param theNodesNot - group of nodes not to replicated
5915   \param theShape - shape to detect affected elements (element which geometric center
5916   located on or inside shape).
5917   The replicated nodes should be associated to affected elements.
5918   \return TRUE if operation has been completed successfully, FALSE otherwise
5919   \sa DoubleNodesInRegion(), DoubleNodeGroupsInRegion()
5920 */
5921 //================================================================================
5922
5923 CORBA::Boolean
5924 SMESH_MeshEditor_i::DoubleNodeElemGroupInRegion(SMESH::SMESH_GroupBase_ptr theElems,
5925                                                 SMESH::SMESH_GroupBase_ptr theNodesNot,
5926                                                 GEOM::GEOM_Object_ptr      theShape )
5927   throw (SALOME::SALOME_Exception)
5928 {
5929   SMESH_TRY;
5930   if ( CORBA::is_nil( theElems ) && theElems->GetType() == SMESH::NODE )
5931     return false;
5932
5933   initData();
5934
5935
5936   SMESHDS_Mesh* aMeshDS = getMeshDS();
5937   TIDSortedElemSet anElems, aNodes, anAffected;
5938   idSourceToSet( theElems, aMeshDS, anElems, SMDSAbs_All );
5939   idSourceToSet( theNodesNot, aMeshDS, aNodes, SMDSAbs_Node );
5940
5941   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theShape );
5942   bool aResult = getEditor().DoubleNodesInRegion( anElems, aNodes, aShape );
5943
5944
5945   declareMeshModified( /*isReComputeSafe=*/ !aResult );
5946
5947   // Update Python script
5948   TPythonDump() << "isDone = " << this << ".DoubleNodeElemGroupInRegion( " << theElems << ", "
5949                 << theNodesNot << ", " << theShape << " )";
5950   return aResult;
5951
5952   SMESH_CATCH( SMESH::throwCorbaException );
5953   return 0;
5954 }
5955
5956 //================================================================================
5957 /*!
5958  * \brief Re-load elements from a list of groups into a TIDSortedElemSet
5959  *  \param [in] theGrpList - groups
5960  *  \param [in] theMeshDS -  mesh
5961  *  \param [out] theElemSet - set of elements
5962  *  \param [in] theIsNodeGrp - is \a theGrpList includes goups of nodes
5963  */
5964 //================================================================================
5965
5966 static void listOfGroupToSet(const SMESH::ListOfGroups& theGrpList,
5967                              SMESHDS_Mesh*              theMeshDS,
5968                              TIDSortedElemSet&          theElemSet,
5969                              const bool                 theIsNodeGrp)
5970 {
5971   for ( int i = 0, n = theGrpList.length(); i < n; i++ )
5972   {
5973     SMESH::SMESH_GroupBase_var aGrp = theGrpList[ i ];
5974     if ( !CORBA::is_nil( aGrp ) && (theIsNodeGrp ? aGrp->GetType() == SMESH::NODE
5975                                     : aGrp->GetType() != SMESH::NODE ) )
5976     {
5977       SMESH::long_array_var anIDs = aGrp->GetIDs();
5978       arrayToSet( anIDs, theMeshDS, theElemSet, theIsNodeGrp ? SMDSAbs_Node : SMDSAbs_All );
5979     }
5980   }
5981 }
5982
5983 //================================================================================
5984 /*!
5985   \brief Creates a hole in a mesh by doubling the nodes of some particular elements.
5986   This method provided for convenience works as DoubleNodes() described above.
5987   \param theElems - list of groups of elements (edges or faces) to be replicated
5988   \param theNodesNot - list of groups of nodes not to replicated
5989   \param theAffectedElems - group of elements to which the replicated nodes
5990   should be associated to.
5991   \return TRUE if operation has been completed successfully, FALSE otherwise
5992   \sa DoubleNodeGroup(), DoubleNodes(), DoubleNodeElemGroupsNew()
5993 */
5994 //================================================================================
5995
5996 CORBA::Boolean
5997 SMESH_MeshEditor_i::DoubleNodeElemGroups(const SMESH::ListOfGroups& theElems,
5998                                          const SMESH::ListOfGroups& theNodesNot,
5999                                          const SMESH::ListOfGroups& theAffectedElems)
6000   throw (SALOME::SALOME_Exception)
6001 {
6002   SMESH_TRY;
6003   initData();
6004
6005
6006   SMESHDS_Mesh* aMeshDS = getMeshDS();
6007   TIDSortedElemSet anElems, aNodes, anAffected;
6008   listOfGroupToSet(theElems, aMeshDS, anElems, false );
6009   listOfGroupToSet(theNodesNot, aMeshDS, aNodes, true );
6010   listOfGroupToSet(theAffectedElems, aMeshDS, anAffected, false );
6011
6012   bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
6013
6014   // Update Python script
6015   TPythonDump() << "isDone = " << this << ".DoubleNodeElemGroups( " << &theElems << ", "
6016                 << &theNodesNot << ", " << &theAffectedElems << " )";
6017
6018   declareMeshModified( /*isReComputeSafe=*/false );
6019   return aResult;
6020
6021   SMESH_CATCH( SMESH::throwCorbaException );
6022   return 0;
6023 }
6024
6025 //================================================================================
6026 /*!
6027  * \brief Creates a hole in a mesh by doubling the nodes of some particular elements
6028  * Works as DoubleNodeElemGroups(), but returns a new group with newly created elements.
6029   \param theElems - list of groups of elements (edges or faces) to be replicated
6030   \param theNodesNot - list of groups of nodes not to replicated
6031   \param theAffectedElems - group of elements to which the replicated nodes
6032   should be associated to.
6033  * \return a new group with newly created elements
6034  * \sa DoubleNodeElemGroups()
6035  */
6036 //================================================================================
6037
6038 SMESH::SMESH_Group_ptr
6039 SMESH_MeshEditor_i::DoubleNodeElemGroupsNew(const SMESH::ListOfGroups& theElems,
6040                                             const SMESH::ListOfGroups& theNodesNot,
6041                                             const SMESH::ListOfGroups& theAffectedElems)
6042   throw (SALOME::SALOME_Exception)
6043 {
6044   TPythonDump pyDump;
6045   SMESH::ListOfGroups_var twoGroups = DoubleNodeElemGroups2New( theElems,
6046                                                                 theNodesNot,
6047                                                                 theAffectedElems,
6048                                                                 true, false );
6049   SMESH::SMESH_GroupBase_var baseGroup = twoGroups[0].in();
6050   SMESH::SMESH_Group_var     elemGroup = SMESH::SMESH_Group::_narrow( baseGroup );
6051
6052   pyDump << elemGroup << " = " << this << ".DoubleNodeElemGroupsNew( "
6053          << theElems         << ", "
6054          << theNodesNot      << ", "
6055          << theAffectedElems << " )";
6056
6057   return elemGroup._retn();
6058 }
6059
6060 //================================================================================
6061 /*!
6062  * \brief Creates a hole in a mesh by doubling the nodes of some particular elements
6063  * Works as DoubleNodeElemGroups(), but returns a new group with newly created elements.
6064   \param theElems - list of groups of elements (edges or faces) to be replicated
6065   \param theNodesNot - list of groups of nodes not to replicated
6066   \param theAffectedElems - group of elements to which the replicated nodes
6067   should be associated to.
6068  * \return a new group with newly created elements
6069  * \sa DoubleNodeElemGroups()
6070  */
6071 //================================================================================
6072
6073 SMESH::ListOfGroups*
6074 SMESH_MeshEditor_i::DoubleNodeElemGroups2New(const SMESH::ListOfGroups& theElems,
6075                                              const SMESH::ListOfGroups& theNodesNot,
6076                                              const SMESH::ListOfGroups& theAffectedElems,
6077                                              CORBA::Boolean             theElemGroupNeeded,
6078                                              CORBA::Boolean             theNodeGroupNeeded)
6079   throw (SALOME::SALOME_Exception)
6080 {
6081   SMESH_TRY;
6082   SMESH::SMESH_Group_var aNewElemGroup, aNewNodeGroup;
6083   SMESH::ListOfGroups_var aTwoGroups = new SMESH::ListOfGroups();
6084   aTwoGroups->length( 2 );
6085   
6086   initData();
6087
6088
6089   SMESHDS_Mesh* aMeshDS = getMeshDS();
6090   TIDSortedElemSet anElems, aNodes, anAffected;
6091   listOfGroupToSet(theElems, aMeshDS, anElems, false );
6092   listOfGroupToSet(theNodesNot, aMeshDS, aNodes, true );
6093   listOfGroupToSet(theAffectedElems, aMeshDS, anAffected, false );
6094
6095   bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
6096
6097   declareMeshModified( /*isReComputeSafe=*/ !aResult );
6098
6099   TPythonDump pyDump;
6100   if ( aResult )
6101   {
6102     // Create group with newly created elements
6103     CORBA::String_var elemGroupName = theElems[0]->GetName();
6104     string aNewName = generateGroupName( string(elemGroupName.in()) + "_double");
6105     if ( !getEditor().GetLastCreatedElems().IsEmpty() && theElemGroupNeeded )
6106     {
6107       SMESH::long_array_var anIds = GetLastCreatedElems();
6108       SMESH::ElementType aGroupType = myMesh_i->GetElementType(anIds[0], true);
6109       aNewElemGroup = myMesh_i->CreateGroup(aGroupType, aNewName.c_str());
6110       aNewElemGroup->Add(anIds);
6111     }
6112     if ( !getEditor().GetLastCreatedNodes().IsEmpty() && theNodeGroupNeeded )
6113     {
6114       SMESH::long_array_var anIds = GetLastCreatedNodes();
6115       aNewNodeGroup = myMesh_i->CreateGroup(SMESH::NODE, aNewName.c_str());
6116       aNewNodeGroup->Add(anIds);
6117     }
6118   }
6119
6120   // Update Python script
6121
6122   pyDump << "[ ";
6123   if ( aNewElemGroup->_is_nil() ) pyDump << "nothing, ";
6124   else                            pyDump << aNewElemGroup << ", ";
6125   if ( aNewNodeGroup->_is_nil() ) pyDump << "nothing ] = ";
6126   else                            pyDump << aNewNodeGroup << " ] = ";
6127
6128   pyDump << this << ".DoubleNodeElemGroups2New( " << &theElems << ", "
6129          << &theNodesNot       << ", "
6130          << &theAffectedElems  << ", "
6131          << theElemGroupNeeded << ", "
6132          << theNodeGroupNeeded << " )";
6133
6134   aTwoGroups[0] = aNewElemGroup._retn();
6135   aTwoGroups[1] = aNewNodeGroup._retn();
6136   return aTwoGroups._retn();
6137
6138   SMESH_CATCH( SMESH::throwCorbaException );
6139   return 0;
6140 }
6141
6142 //================================================================================
6143 /*!
6144   \brief Creates a hole in a mesh by doubling the nodes of some particular elements
6145   This method provided for convenience works as DoubleNodes() described above.
6146   \param theElems - list of groups of elements (edges or faces) to be replicated
6147   \param theNodesNot - list of groups of nodes not to replicated
6148   \param theShape - shape to detect affected elements (element which geometric center
6149   located on or inside shape).
6150   The replicated nodes should be associated to affected elements.
6151   \return TRUE if operation has been completed successfully, FALSE otherwise
6152   \sa DoubleNodeGroupInRegion(), DoubleNodesInRegion()
6153 */
6154 //================================================================================
6155
6156 CORBA::Boolean
6157 SMESH_MeshEditor_i::DoubleNodeElemGroupsInRegion(const SMESH::ListOfGroups& theElems,
6158                                                  const SMESH::ListOfGroups& theNodesNot,
6159                                                  GEOM::GEOM_Object_ptr      theShape )
6160   throw (SALOME::SALOME_Exception)
6161 {
6162   SMESH_TRY;
6163   initData();
6164
6165
6166   SMESHDS_Mesh* aMeshDS = getMeshDS();
6167   TIDSortedElemSet anElems, aNodes;
6168   listOfGroupToSet(theElems, aMeshDS, anElems,false );
6169   listOfGroupToSet(theNodesNot, aMeshDS, aNodes, true );
6170
6171   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theShape );
6172   bool aResult = getEditor().DoubleNodesInRegion( anElems, aNodes, aShape );
6173
6174   // Update Python script
6175   TPythonDump() << "isDone = " << this << ".DoubleNodeElemGroupsInRegion( " << &theElems << ", "
6176                 << &theNodesNot << ", " << theShape << " )";
6177
6178   declareMeshModified( /*isReComputeSafe=*/ !aResult );
6179   return aResult;
6180
6181   SMESH_CATCH( SMESH::throwCorbaException );
6182   return 0;
6183 }
6184
6185 //================================================================================
6186 /*!
6187   \brief Identify the elements that will be affected by node duplication (actual
6188          duplication is not performed.
6189   This method is the first step of DoubleNodeElemGroupsInRegion.
6190   \param theElems - list of groups of elements (edges or faces) to be replicated
6191   \param theNodesNot - list of groups of nodes not to replicated
6192   \param theShape - shape to detect affected elements (element which geometric center
6193          located on or inside shape).
6194          The replicated nodes should be associated to affected elements.
6195   \return groups of affected elements
6196   \sa DoubleNodeElemGroupsInRegion()
6197 */
6198 //================================================================================
6199 SMESH::ListOfGroups*
6200 SMESH_MeshEditor_i::AffectedElemGroupsInRegion( const SMESH::ListOfGroups& theElems,
6201                                                 const SMESH::ListOfGroups& theNodesNot,
6202                                                 GEOM::GEOM_Object_ptr      theShape )
6203   throw (SALOME::SALOME_Exception)
6204 {
6205   SMESH_TRY;
6206   MESSAGE("AffectedElemGroupsInRegion");
6207   SMESH::ListOfGroups_var aListOfGroups = new SMESH::ListOfGroups();
6208   bool isEdgeGroup = false;
6209   bool isFaceGroup = false;
6210   bool isVolumeGroup = false;
6211   SMESH::SMESH_Group_var aNewEdgeGroup = myMesh_i->CreateGroup(SMESH::EDGE, "affectedEdges");
6212   SMESH::SMESH_Group_var aNewFaceGroup = myMesh_i->CreateGroup(SMESH::FACE, "affectedFaces");
6213   SMESH::SMESH_Group_var aNewVolumeGroup = myMesh_i->CreateGroup(SMESH::VOLUME, "affectedVolumes");
6214
6215   initData();
6216
6217   ::SMESH_MeshEditor aMeshEditor(myMesh);
6218
6219   SMESHDS_Mesh* aMeshDS = getMeshDS();
6220   TIDSortedElemSet anElems, aNodes;
6221   listOfGroupToSet(theElems, aMeshDS, anElems, false);
6222   listOfGroupToSet(theNodesNot, aMeshDS, aNodes, true);
6223
6224   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape(theShape);
6225   TIDSortedElemSet anAffected;
6226   bool aResult = aMeshEditor.AffectedElemGroupsInRegion(anElems, aNodes, aShape, anAffected);
6227
6228
6229   declareMeshModified( /*isReComputeSafe=*/ !aResult );
6230
6231   TPythonDump pyDump;
6232   if (aResult)
6233   {
6234     int lg = anAffected.size();
6235     MESSAGE("lg="<< lg);
6236     SMESH::long_array_var volumeIds = new SMESH::long_array;
6237     volumeIds->length(lg);
6238     SMESH::long_array_var faceIds = new SMESH::long_array;
6239     faceIds->length(lg);
6240     SMESH::long_array_var edgeIds = new SMESH::long_array;
6241     edgeIds->length(lg);
6242     int ivol = 0;
6243     int iface = 0;
6244     int iedge = 0;
6245
6246     TIDSortedElemSet::const_iterator eIt = anAffected.begin();
6247     for (; eIt != anAffected.end(); ++eIt)
6248     {
6249       const SMDS_MeshElement* anElem = *eIt;
6250       if (!anElem)
6251         continue;
6252       int elemId = anElem->GetID();
6253       if (myMesh->GetElementType(elemId, true) == SMDSAbs_Volume)
6254         volumeIds[ivol++] = elemId;
6255       else if (myMesh->GetElementType(elemId, true) == SMDSAbs_Face)
6256         faceIds[iface++] = elemId;
6257       else if (myMesh->GetElementType(elemId, true) == SMDSAbs_Edge)
6258         edgeIds[iedge++] = elemId;
6259     }
6260     volumeIds->length(ivol);
6261     faceIds->length(iface);
6262     edgeIds->length(iedge);
6263
6264     aNewVolumeGroup->Add(volumeIds);
6265     aNewFaceGroup->Add(faceIds);
6266     aNewEdgeGroup->Add(edgeIds);
6267     isVolumeGroup = (aNewVolumeGroup->Size() > 0);
6268     isFaceGroup = (aNewFaceGroup->Size() > 0);
6269     isEdgeGroup = (aNewEdgeGroup->Size() > 0);
6270   }
6271
6272   int nbGroups = 0;
6273   if (isEdgeGroup)   nbGroups++;
6274   if (isFaceGroup)   nbGroups++;
6275   if (isVolumeGroup) nbGroups++;
6276   aListOfGroups->length(nbGroups);
6277
6278   int i = 0;
6279   if (isEdgeGroup)   aListOfGroups[i++] = aNewEdgeGroup._retn();
6280   if (isFaceGroup)   aListOfGroups[i++] = aNewFaceGroup._retn();
6281   if (isVolumeGroup) aListOfGroups[i++] = aNewVolumeGroup._retn();
6282
6283   // Update Python script
6284
6285   pyDump << "[ ";
6286   if (isEdgeGroup)   pyDump << aNewEdgeGroup << ", ";
6287   if (isFaceGroup)   pyDump << aNewFaceGroup << ", ";
6288   if (isVolumeGroup) pyDump << aNewVolumeGroup << ", ";
6289   pyDump << "] = ";
6290   pyDump << this << ".AffectedElemGroupsInRegion( "
6291          << &theElems << ", " << &theNodesNot << ", " << theShape << " )";
6292
6293   return aListOfGroups._retn();
6294
6295   SMESH_CATCH( SMESH::throwCorbaException );
6296   return 0;
6297 }
6298
6299 //================================================================================
6300 /*!
6301   \brief Generated skin mesh (containing 2D cells) from 3D mesh
6302    The created 2D mesh elements based on nodes of free faces of boundary volumes
6303   \return TRUE if operation has been completed successfully, FALSE otherwise
6304 */
6305 //================================================================================
6306
6307 CORBA::Boolean SMESH_MeshEditor_i::Make2DMeshFrom3D()
6308   throw (SALOME::SALOME_Exception)
6309 {
6310   SMESH_TRY;
6311   initData();
6312
6313   bool aResult = getEditor().Make2DMeshFrom3D();
6314
6315   TPythonDump() << "isDone = " << this << ".Make2DMeshFrom3D()";
6316
6317   declareMeshModified( /*isReComputeSafe=*/ !aResult );
6318   return aResult;
6319
6320   SMESH_CATCH( SMESH::throwCorbaException );
6321   return false;
6322 }
6323
6324 //================================================================================
6325 /*!
6326  * \brief Double nodes on shared faces between groups of volumes and create flat elements on demand.
6327  * The list of groups must contain at least two groups. The groups have to be disjoint:
6328  * no common element into two different groups.
6329  * The nodes of the internal faces at the boundaries of the groups are doubled.
6330  * Optionally, the internal faces are replaced by flat elements.
6331  * Triangles are transformed into prisms, and quadrangles into hexahedrons.
6332  * The flat elements are stored in groups of volumes.
6333  * These groups are named according to the position of the group in the list:
6334  * the group j_n_p is the group of the flat elements that are built between the group #n and the group #p in the list.
6335  * If there is no shared faces between the group #n and the group #p in the list, the group j_n_p is not created.
6336  * All the flat elements are gathered into the group named "joints3D" (or "joints2D" in 2D situation).
6337  * The flat element of the multiple junctions between the simple junction are stored in a group named "jointsMultiples".
6338  * \param theDomains - list of groups of volumes
6339  * \param createJointElems - if TRUE, create the elements
6340  * \param onAllBoundaries - if TRUE, the nodes and elements are also created on
6341  *        the boundary between \a theDomains and the rest mesh
6342  * \return TRUE if operation has been completed successfully, FALSE otherwise
6343  */
6344 //================================================================================
6345
6346 CORBA::Boolean
6347 SMESH_MeshEditor_i::DoubleNodesOnGroupBoundaries( const SMESH::ListOfGroups& theDomains,
6348                                                   CORBA::Boolean             createJointElems,
6349                                                   CORBA::Boolean             onAllBoundaries )
6350   throw (SALOME::SALOME_Exception)
6351 {
6352   bool isOK = false;
6353
6354   SMESH_TRY;
6355   initData();
6356
6357   SMESHDS_Mesh* aMeshDS = getMeshDS();
6358
6359   // MESSAGE("theDomains.length = "<<theDomains.length());
6360   if ( theDomains.length() <= 1 && !onAllBoundaries )
6361     THROW_SALOME_CORBA_EXCEPTION("At least 2 groups are required.", SALOME::BAD_PARAM);
6362
6363   vector<TIDSortedElemSet> domains;
6364   domains.resize( theDomains.length() );
6365
6366   for ( int i = 0, n = theDomains.length(); i < n; i++ )
6367   {
6368     SMESH::SMESH_GroupBase_var aGrp = theDomains[ i ];
6369     if ( !CORBA::is_nil( aGrp ) /*&& ( aGrp->GetType() != SMESH::NODE )*/ )
6370     {
6371 //      if ( aGrp->GetType() != SMESH::VOLUME )
6372 //        THROW_SALOME_CORBA_EXCEPTION("Not a volume group", SALOME::BAD_PARAM);
6373       SMESH::long_array_var anIDs = aGrp->GetIDs();
6374       arrayToSet( anIDs, aMeshDS, domains[ i ], SMDSAbs_All );
6375     }
6376   }
6377
6378   isOK = getEditor().DoubleNodesOnGroupBoundaries( domains, createJointElems, onAllBoundaries );
6379   // TODO publish the groups of flat elements in study
6380
6381   declareMeshModified( /*isReComputeSafe=*/ !isOK );
6382
6383   // Update Python script
6384   TPythonDump() << "isDone = " << this << ".DoubleNodesOnGroupBoundaries( " << &theDomains
6385                 << ", " << createJointElems << ", " << onAllBoundaries << " )";
6386
6387   SMESH_CATCH( SMESH::throwCorbaException );
6388
6389   myMesh_i->CreateGroupServants(); // publish created groups if any
6390
6391   return isOK;
6392 }
6393
6394 //================================================================================
6395 /*!
6396  * \brief Double nodes on some external faces and create flat elements.
6397  * Flat elements are mainly used by some types of mechanic calculations.
6398  *
6399  * Each group of the list must be constituted of faces.
6400  * Triangles are transformed in prisms, and quadrangles in hexahedrons.
6401  * @param theGroupsOfFaces - list of groups of faces
6402  * @return TRUE if operation has been completed successfully, FALSE otherwise
6403  */
6404 //================================================================================
6405
6406 CORBA::Boolean
6407 SMESH_MeshEditor_i::CreateFlatElementsOnFacesGroups( const SMESH::ListOfGroups& theGroupsOfFaces )
6408   throw (SALOME::SALOME_Exception)
6409 {
6410   SMESH_TRY;
6411   initData();
6412
6413   SMESHDS_Mesh* aMeshDS = getMeshDS();
6414
6415   vector<TIDSortedElemSet> faceGroups;
6416   faceGroups.clear();
6417
6418   for ( int i = 0, n = theGroupsOfFaces.length(); i < n; i++ )
6419   {
6420     SMESH::SMESH_GroupBase_var aGrp = theGroupsOfFaces[ i ];
6421     if ( !CORBA::is_nil( aGrp ) && ( aGrp->GetType() != SMESH::NODE ) )
6422     {
6423       TIDSortedElemSet faceGroup;
6424       faceGroup.clear();
6425       faceGroups.push_back(faceGroup);
6426       SMESH::long_array_var anIDs = aGrp->GetIDs();
6427       arrayToSet( anIDs, aMeshDS, faceGroups[ i ], SMDSAbs_All );
6428     }
6429   }
6430
6431   bool aResult = getEditor().CreateFlatElementsOnFacesGroups( faceGroups );
6432   // TODO publish the groups of flat elements in study
6433
6434   declareMeshModified( /*isReComputeSafe=*/ !aResult );
6435
6436   // Update Python script
6437   TPythonDump() << this << ".CreateFlatElementsOnFacesGroups( " << &theGroupsOfFaces << " )";
6438   return aResult;
6439
6440   SMESH_CATCH( SMESH::throwCorbaException );
6441   return false;
6442 }
6443
6444 //================================================================================
6445 /*!
6446  *  \brief Identify all the elements around a geom shape, get the faces delimiting
6447  *         the hole.
6448  *
6449  *  Build groups of volume to remove, groups of faces to replace on the skin of the
6450  *  object, groups of faces to remove inside the object, (idem edges).
6451  *  Build ordered list of nodes at the border of each group of faces to replace
6452  *  (to be used to build a geom subshape).
6453  */
6454 //================================================================================
6455
6456 void SMESH_MeshEditor_i::CreateHoleSkin(CORBA::Double                  radius,
6457                                         GEOM::GEOM_Object_ptr          theShape,
6458                                         const char*                    groupName,
6459                                         const SMESH::double_array&     theNodesCoords,
6460                                         SMESH::array_of_long_array_out GroupsOfNodes)
6461   throw (SALOME::SALOME_Exception)
6462 {
6463   SMESH_TRY;
6464
6465   initData();
6466   std::vector<std::vector<int> > aListOfListOfNodes;
6467   ::SMESH_MeshEditor aMeshEditor( myMesh );
6468
6469   theSearchersDeleter.Set( myMesh ); // remove theNodeSearcher if mesh is other
6470   if ( !theNodeSearcher )
6471     theNodeSearcher = SMESH_MeshAlgos::GetNodeSearcher( *getMeshDS() );
6472
6473   vector<double> nodesCoords;
6474   for (int i = 0; i < theNodesCoords.length(); i++)
6475   {
6476     nodesCoords.push_back( theNodesCoords[i] );
6477   }
6478
6479   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theShape );
6480   aMeshEditor.CreateHoleSkin(radius, aShape, theNodeSearcher, groupName,
6481                              nodesCoords, aListOfListOfNodes);
6482
6483   GroupsOfNodes = new SMESH::array_of_long_array;
6484   GroupsOfNodes->length( aListOfListOfNodes.size() );
6485   std::vector<std::vector<int> >::iterator llIt = aListOfListOfNodes.begin();
6486   for ( CORBA::Long i = 0; llIt != aListOfListOfNodes.end(); llIt++, i++ )
6487   {
6488     vector<int>& aListOfNodes = *llIt;
6489     vector<int>::iterator lIt = aListOfNodes.begin();;
6490     SMESH::long_array& aGroup = (*GroupsOfNodes)[ i ];
6491     aGroup.length( aListOfNodes.size() );
6492     for ( int j = 0; lIt != aListOfNodes.end(); lIt++, j++ )
6493       aGroup[ j ] = (*lIt);
6494   }
6495   TPythonDump() << "lists_nodes = " << this << ".CreateHoleSkin( "
6496                 << radius << ", "
6497                 << theShape
6498                 << ", '" << groupName << "', "
6499                 << theNodesCoords << " )";
6500
6501   SMESH_CATCH( SMESH::throwCorbaException );
6502 }
6503
6504 // issue 20749 ===================================================================
6505 /*!
6506  * \brief Creates missing boundary elements
6507  *  \param elements - elements whose boundary is to be checked
6508  *  \param dimension - defines type of boundary elements to create
6509  *  \param groupName - a name of group to store created boundary elements in,
6510  *                     "" means not to create the group
6511  *  \param meshName - a name of new mesh to store created boundary elements in,
6512  *                     "" means not to create the new mesh
6513  *  \param toCopyElements - if true, the checked elements will be copied into the new mesh
6514  *  \param toCopyExistingBondary - if true, not only new but also pre-existing
6515  *                                boundary elements will be copied into the new mesh
6516  *  \param group - returns the create group, if any
6517  *  \retval SMESH::SMESH_Mesh - the mesh where elements were added to
6518  */
6519 // ================================================================================
6520
6521 SMESH::SMESH_Mesh_ptr
6522 SMESH_MeshEditor_i::MakeBoundaryMesh(SMESH::SMESH_IDSource_ptr idSource,
6523                                      SMESH::Bnd_Dimension      dim,
6524                                      const char*               groupName,
6525                                      const char*               meshName,
6526                                      CORBA::Boolean            toCopyElements,
6527                                      CORBA::Boolean            toCopyExistingBondary,
6528                                      SMESH::SMESH_Group_out    group)
6529   throw (SALOME::SALOME_Exception)
6530 {
6531   SMESH_TRY;
6532   initData();
6533
6534   if ( dim > SMESH::BND_1DFROM2D )
6535     THROW_SALOME_CORBA_EXCEPTION("Invalid boundary dimension", SALOME::BAD_PARAM);
6536
6537   SMESHDS_Mesh* aMeshDS = getMeshDS();
6538
6539   SMESH::SMESH_Mesh_var mesh_var;
6540   SMESH::SMESH_Group_var group_var;
6541
6542   TPythonDump pyDump;
6543
6544   TIDSortedElemSet elements;
6545   SMDSAbs_ElementType elemType = (dim == SMESH::BND_1DFROM2D) ? SMDSAbs_Face : SMDSAbs_Volume;
6546   if ( idSourceToSet( idSource, aMeshDS, elements, elemType,/*emptyIfIsMesh=*/true ))
6547   {
6548     // mesh to fill in
6549     mesh_var =
6550       strlen(meshName) ? makeMesh(meshName) : SMESH::SMESH_Mesh::_duplicate(myMesh_i->_this());
6551     SMESH_Mesh_i* mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh_var );
6552     // other mesh
6553     SMESH_Mesh* smesh_mesh = (mesh_i==myMesh_i) ? (SMESH_Mesh*)0 : &mesh_i->GetImpl();
6554
6555     // group of new boundary elements
6556     SMESH_Group* smesh_group = 0;
6557     if ( strlen(groupName) )
6558     {
6559       group_var = mesh_i->CreateGroup( SMESH::ElementType(int(elemType)-1),groupName);
6560       if ( SMESH_GroupBase_i* group_i = SMESH::DownCast<SMESH_GroupBase_i*>( group_var ))
6561         smesh_group = group_i->GetSmeshGroup();
6562     }
6563
6564     // do it
6565     getEditor().MakeBoundaryMesh( elements,
6566                                   ::SMESH_MeshEditor::Bnd_Dimension(dim),
6567                                   smesh_group,
6568                                   smesh_mesh,
6569                                   toCopyElements,
6570                                   toCopyExistingBondary);
6571
6572     if ( smesh_mesh )
6573       smesh_mesh->GetMeshDS()->Modified();
6574   }
6575
6576   const char* dimName[] = { "BND_2DFROM3D", "BND_1DFROM3D", "BND_1DFROM2D" };
6577
6578   // result of MakeBoundaryMesh() is a tuple (mesh, group)
6579   if ( mesh_var->_is_nil() )
6580     pyDump << myMesh_i->_this() << ", ";
6581   else
6582     pyDump << mesh_var << ", ";
6583   if ( group_var->_is_nil() )
6584     pyDump << "_NoneGroup = "; // assignment to None is forbiden
6585   else
6586     pyDump << group_var << " = ";
6587   pyDump << this << ".MakeBoundaryMesh( "
6588          << idSource << ", "
6589          << "SMESH." << dimName[int(dim)] << ", "
6590          << "'" << groupName << "', "
6591          << "'" << meshName<< "', "
6592          << toCopyElements << ", "
6593          << toCopyExistingBondary << ")";
6594
6595   group = group_var._retn();
6596   return mesh_var._retn();
6597
6598   SMESH_CATCH( SMESH::throwCorbaException );
6599   return SMESH::SMESH_Mesh::_nil();
6600 }
6601
6602 //================================================================================
6603 /*!
6604  * \brief Creates missing boundary elements
6605  *  \param dimension - defines type of boundary elements to create
6606  *  \param groupName - a name of group to store all boundary elements in,
6607  *    "" means not to create the group
6608  *  \param meshName - a name of a new mesh, which is a copy of the initial 
6609  *    mesh + created boundary elements; "" means not to create the new mesh
6610  *  \param toCopyAll - if true, the whole initial mesh will be copied into
6611  *    the new mesh else only boundary elements will be copied into the new mesh
6612  *  \param groups - optional groups of elements to make boundary around
6613  *  \param mesh - returns the mesh where elements were added to
6614  *  \param group - returns the created group, if any
6615  *  \retval long - number of added boundary elements
6616  */
6617 //================================================================================
6618
6619 CORBA::Long SMESH_MeshEditor_i::MakeBoundaryElements(SMESH::Bnd_Dimension dim,
6620                                                      const char* groupName,
6621                                                      const char* meshName,
6622                                                      CORBA::Boolean toCopyAll,
6623                                                      const SMESH::ListOfIDSources& groups,
6624                                                      SMESH::SMESH_Mesh_out mesh,
6625                                                      SMESH::SMESH_Group_out group)
6626   throw (SALOME::SALOME_Exception)
6627 {
6628   SMESH_TRY;
6629   initData();
6630
6631   if ( dim > SMESH::BND_1DFROM2D )
6632     THROW_SALOME_CORBA_EXCEPTION("Invalid boundary dimension", SALOME::BAD_PARAM);
6633
6634   // separate groups belonging to this and other mesh
6635   SMESH::ListOfIDSources_var groupsOfThisMesh  = new SMESH::ListOfIDSources;
6636   SMESH::ListOfIDSources_var groupsOfOtherMesh = new SMESH::ListOfIDSources;
6637   groupsOfThisMesh ->length( groups.length() );
6638   groupsOfOtherMesh->length( groups.length() );
6639   int nbGroups = 0, nbGroupsOfOtherMesh = 0;
6640   for ( int i = 0; i < groups.length(); ++i )
6641   {
6642     SMESH::SMESH_Mesh_var m = groups[i]->GetMesh();
6643     if ( myMesh_i != SMESH::DownCast<SMESH_Mesh_i*>( m ))
6644       groupsOfOtherMesh[ nbGroupsOfOtherMesh++ ] = groups[i];
6645     else
6646       groupsOfThisMesh[ nbGroups++ ] = groups[i];
6647     if ( SMESH::DownCast<SMESH_Mesh_i*>( groups[i] ))
6648       THROW_SALOME_CORBA_EXCEPTION("expect a group but recieve a mesh", SALOME::BAD_PARAM);
6649   }
6650   groupsOfThisMesh->length( nbGroups );
6651   groupsOfOtherMesh->length( nbGroupsOfOtherMesh );
6652
6653   int nbAdded = 0;
6654   TPythonDump pyDump;
6655
6656   if ( nbGroupsOfOtherMesh > 0 )
6657   {
6658     // process groups belonging to another mesh
6659     SMESH::SMESH_Mesh_var    otherMesh = groupsOfOtherMesh[0]->GetMesh();
6660     SMESH::SMESH_MeshEditor_var editor = otherMesh->GetMeshEditor();
6661     nbAdded += editor->MakeBoundaryElements( dim, groupName, meshName, toCopyAll,
6662                                              groupsOfOtherMesh, mesh, group );
6663   }
6664
6665   SMESH::SMESH_Mesh_var mesh_var;
6666   SMESH::SMESH_Group_var group_var;
6667
6668   // get mesh to fill
6669   mesh_var = SMESH::SMESH_Mesh::_duplicate( myMesh_i->_this() );
6670   const bool toCopyMesh = ( strlen( meshName ) > 0 );
6671   if ( toCopyMesh )
6672   {
6673     if ( toCopyAll )
6674       mesh_var = SMESH_Gen_i::GetSMESHGen()->CopyMesh(mesh_var,
6675                                                       meshName,
6676                                                       /*toCopyGroups=*/false,
6677                                                       /*toKeepIDs=*/true);
6678     else
6679       mesh_var = makeMesh(meshName);
6680   }
6681   SMESH_Mesh_i* mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh_var );
6682   SMESH_Mesh*  tgtMesh = &mesh_i->GetImpl();
6683
6684   // source mesh
6685   SMESH_Mesh*     srcMesh = ( toCopyMesh && !toCopyAll ) ? myMesh : tgtMesh;
6686   SMESHDS_Mesh* srcMeshDS = srcMesh->GetMeshDS();
6687
6688   // group of boundary elements
6689   SMESH_Group* smesh_group = 0;
6690   SMDSAbs_ElementType elemType = (dim == SMESH::BND_2DFROM3D) ? SMDSAbs_Volume : SMDSAbs_Face;
6691   if ( strlen(groupName) )
6692   {
6693     SMESH::ElementType groupType = SMESH::ElementType( int(elemType)-1 );
6694     group_var = mesh_i->CreateGroup( groupType, groupName );
6695     if ( SMESH_GroupBase_i* group_i = SMESH::DownCast<SMESH_GroupBase_i*>( group_var ))
6696       smesh_group = group_i->GetSmeshGroup();
6697   }
6698
6699   TIDSortedElemSet elements;
6700
6701   if ( groups.length() > 0 )
6702   {
6703     for ( int i = 0; i < nbGroups; ++i )
6704     {
6705       elements.clear();
6706       if ( idSourceToSet( groupsOfThisMesh[i], srcMeshDS, elements, elemType,/*emptyIfIsMesh=*/0 ))
6707       {
6708         SMESH::Bnd_Dimension bdim = 
6709           ( elemType == SMDSAbs_Volume ) ? SMESH::BND_2DFROM3D : SMESH::BND_1DFROM2D;
6710         nbAdded += getEditor().MakeBoundaryMesh( elements,
6711                                                  ::SMESH_MeshEditor::Bnd_Dimension(bdim),
6712                                                  smesh_group,
6713                                                  tgtMesh,
6714                                                  /*toCopyElements=*/false,
6715                                                  /*toCopyExistingBondary=*/srcMesh != tgtMesh,
6716                                                  /*toAddExistingBondary=*/true,
6717                                                  /*aroundElements=*/true);
6718       }
6719     }
6720   }
6721   else
6722   {
6723     nbAdded += getEditor().MakeBoundaryMesh( elements,
6724                                              ::SMESH_MeshEditor::Bnd_Dimension(dim),
6725                                              smesh_group,
6726                                              tgtMesh,
6727                                              /*toCopyElements=*/false,
6728                                              /*toCopyExistingBondary=*/srcMesh != tgtMesh,
6729                                              /*toAddExistingBondary=*/true);
6730   }
6731   tgtMesh->GetMeshDS()->Modified();
6732
6733   const char* dimName[] = { "BND_2DFROM3D", "BND_1DFROM3D", "BND_1DFROM2D" };
6734
6735   // result of MakeBoundaryElements() is a tuple (nb, mesh, group)
6736   pyDump << "nbAdded, ";
6737   if ( mesh_var->_is_nil() )
6738     pyDump << myMesh_i->_this() << ", ";
6739   else
6740     pyDump << mesh_var << ", ";
6741   if ( group_var->_is_nil() )
6742     pyDump << "_NoneGroup = "; // assignment to None is forbiden
6743   else
6744     pyDump << group_var << " = ";
6745   pyDump << this << ".MakeBoundaryElements( "
6746          << "SMESH." << dimName[int(dim)] << ", "
6747          << "'" << groupName << "', "
6748          << "'" << meshName<< "', "
6749          << toCopyAll << ", "
6750          << groups << ")";
6751
6752   mesh  = mesh_var._retn();
6753   group = group_var._retn();
6754   return nbAdded;
6755
6756   SMESH_CATCH( SMESH::throwCorbaException );
6757   return 0;
6758 }