]> SALOME platform Git repositories - plugins/hybridplugin.git/commitdiff
Salome HOME
0020966: How to create GHS3D mesh from an existing mesh ?
authoreap <eap@opencascade.com>
Thu, 2 Sep 2010 14:18:22 +0000 (14:18 +0000)
committereap <eap@opencascade.com>
Thu, 2 Sep 2010 14:18:22 +0000 (14:18 +0000)
  Fix bad input file (wrong nb of faces) in case if not all faces are bound to geometry

src/GHS3DPlugin_GHS3D.cxx

index 70dc77b712b3f7344fda9dd1d0154484cd532261..6ff024a330a2e7096583d0c2445988117a40e104 100644 (file)
@@ -266,10 +266,8 @@ static bool writeFaces (ofstream &            theFile,
   int shapeID, nbNodes, aSmdsID;
   bool idFound;
 
-  std::cout << "    " << theMesh->NbFaces() << " shapes of 2D dimension" << std::endl;
-  std::cout << std::endl;
-
-  theFile << space << theMesh->NbFaces() << space << dummyint << std::endl;
+  // count faces bound to geometry
+  int nbFaces = 0;
 
   TopExp_Explorer expface( theMesh->ShapeToMesh(), TopAbs_FACE );
   for ( int i = 0; expface.More(); expface.Next(), i++ ) {
@@ -286,8 +284,16 @@ static bool writeFaces (ofstream &            theFile,
     if ( ! idFound ) {
       tabID[i]    = shapeID;
       tabShape[i] = aShape;
+      theSubMesh  = theMesh->MeshElements( aShape );
+      if ( theSubMesh )
+        nbFaces += theSubMesh->NbElements();
     }
   }
+  std::cout << "    " << nbFaces << " shapes of 2D dimension" << std::endl;
+  std::cout << std::endl;
+
+  theFile << space << nbFaces << space << dummyint << std::endl;
+
   for ( int i =0; i < nbShape; i++ ) {
     if ( tabID[i] != 0 ) {
       aShape      = tabShape[i];