]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Correction on the naming.
authorClarisse Genrault <clarisse.genrault@cea.fr>
Thu, 28 Sep 2017 13:53:04 +0000 (15:53 +0200)
committerClarisse Genrault <clarisse.genrault@cea.fr>
Thu, 28 Sep 2017 13:53:04 +0000 (15:53 +0200)
src/PrimitivesPlugin/PrimitivesPlugin_Cone.cpp
src/PrimitivesPlugin/PrimitivesPlugin_Sphere.cpp
src/PrimitivesPlugin/PrimitivesPlugin_Torus.cpp

index fba4eb4987c1597b802e9476899cac42acd9243f..4d92398d737e38ab3d668b84a40e13a56b15a85d 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <GeomAPI_Edge.h>
 #include <GeomAPI_Lin.h>
+#include <GeomAPI_ShapeExplorer.h>
 
 #include <GeomAlgoAPI_PointBuilder.h>
 
@@ -17,6 +18,8 @@
 #include <ModelAPI_ResultConstruction.h>
 #include <ModelAPI_Session.h>
 
+#include <sstream>
+
 //=================================================================================================
 PrimitivesPlugin_Cone::PrimitivesPlugin_Cone()
 {
@@ -145,9 +148,25 @@ void PrimitivesPlugin_Cone::loadNamingDS(std::shared_ptr<GeomAlgoAPI_Cone> theCo
   int num = 1;
   std::map< std::string, std::shared_ptr<GeomAPI_Shape> > listOfFaces =
       theConeAlgo->getCreatedFaces();
+  int nbFaces = 0;
   for (std::map< std::string, std::shared_ptr<GeomAPI_Shape> >::iterator
        it=listOfFaces.begin(); it!=listOfFaces.end(); ++it) {
     std::shared_ptr<GeomAPI_Shape> aFace = (*it).second;
     theResultCone->generated(aFace, (*it).first, num++);
+    nbFaces++;
+  }
+  
+  if (nbFaces == 2) {
+    // Naming vertices
+    GeomAPI_DataMapOfShapeShape aVertices;
+    GeomAPI_ShapeExplorer aVertExp(theConeAlgo->shape(), GeomAPI_Shape::VERTEX);
+    for(int anIndex = 1; aVertExp.more(); aVertExp.next()) {
+      if (!aVertices.isBound(aVertExp.current())) {
+        std::ostringstream aStream;
+        aStream<<"Vertex_"<<anIndex++;
+        theResultCone->generated(aVertExp.current(), aStream.str(), num++);
+        aVertices.bind(aVertExp.current(), aVertExp.current());
+      }
+    }
   }
-}
\ No newline at end of file
+}
index 9e63047df90e31419cf531780fdb03c349950da2..e6376b270eafda1bb6995087979255975a50aba6 100644 (file)
@@ -6,6 +6,8 @@
 
 #include <PrimitivesPlugin_Sphere.h>
 
+#include <GeomAPI_ShapeExplorer.h>
+
 #include <GeomAlgoAPI_PointBuilder.h>
 
 #include <ModelAPI_AttributeDouble.h>
@@ -14,6 +16,8 @@
 #include <ModelAPI_ResultConstruction.h>
 #include <ModelAPI_Session.h>
 
+#include <sstream>
+
 //=================================================================================================
 PrimitivesPlugin_Sphere::PrimitivesPlugin_Sphere()
 {
@@ -101,6 +105,7 @@ void PrimitivesPlugin_Sphere::loadNamingDS(std::shared_ptr<GeomAlgoAPI_Sphere> t
   theSphereAlgo->prepareNamingFaces();
 
   // Insert to faces
+  // Naming for faces and edges
   int num = 1;
   std::map< std::string, std::shared_ptr<GeomAPI_Shape> > listOfFaces =
       theSphereAlgo->getCreatedFaces();
@@ -109,4 +114,16 @@ void PrimitivesPlugin_Sphere::loadNamingDS(std::shared_ptr<GeomAlgoAPI_Sphere> t
     std::shared_ptr<GeomAPI_Shape> aFace = (*it).second;
     theResultSphere->generated(aFace, (*it).first, num++);
   }
+  
+  // Naming vertices
+  GeomAPI_DataMapOfShapeShape aVertices;
+  GeomAPI_ShapeExplorer aVertExp(theSphereAlgo->shape(), GeomAPI_Shape::VERTEX);
+  for(int anIndex = 1; aVertExp.more(); aVertExp.next()) {
+    if (!aVertices.isBound(aVertExp.current())) {
+      std::ostringstream aStream;
+      aStream<<"Vertex_"<<anIndex++;
+      theResultSphere->generated(aVertExp.current(), aStream.str(), num++);
+      aVertices.bind(aVertExp.current(), aVertExp.current());
+    }
+  }
 }
index 817714a955d05cf2a441852bf671e365e9c74110..bd5a8851b766a0a76a851838dd8a6a8b9193022c 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <GeomAPI_Edge.h>
 #include <GeomAPI_Lin.h>
+#include <GeomAPI_ShapeExplorer.h>
 
 #include <GeomAlgoAPI_PointBuilder.h>
 
@@ -17,6 +18,8 @@
 #include <ModelAPI_ResultConstruction.h>
 #include <ModelAPI_Session.h>
 
+#include <sstream>
+
 //=================================================================================================
 PrimitivesPlugin_Torus::PrimitivesPlugin_Torus()
 {
@@ -138,6 +141,7 @@ void PrimitivesPlugin_Torus::loadNamingDS(std::shared_ptr<GeomAlgoAPI_Torus> the
   theTorusAlgo->prepareNamingFaces();
 
   // Insert to faces
+  // Naming for faces
   int num = 1;
   std::map< std::string, std::shared_ptr<GeomAPI_Shape> > listOfFaces =
       theTorusAlgo->getCreatedFaces();
@@ -146,4 +150,16 @@ void PrimitivesPlugin_Torus::loadNamingDS(std::shared_ptr<GeomAlgoAPI_Torus> the
     std::shared_ptr<GeomAPI_Shape> aFace = (*it).second;
     theResultTorus->generated(aFace, (*it).first, num++);
   }
-}
\ No newline at end of file
+  
+  // Naming of edges
+  GeomAPI_DataMapOfShapeShape anEdges;
+  GeomAPI_ShapeExplorer anEdgeExp(theTorusAlgo->shape(), GeomAPI_Shape::EDGE);
+  for(int anIndex = 1; anEdgeExp.more(); anEdgeExp.next()) {
+    if (!anEdges.isBound(anEdgeExp.current())) {
+      std::ostringstream aStream;
+      aStream<<"Edge_"<<anIndex++;
+      theResultTorus->generated(anEdgeExp.current(), aStream.str(), num++);
+      anEdges.bind(anEdgeExp.current(), anEdgeExp.current());
+    }
+  }
+}