Salome HOME
Try to use length of edges for association in case of a 2-edges wire
[modules/smesh.git] / src / StdMeshers / StdMeshers_QuadToTriaAdaptor.hxx
index 180bb25670ea1b206429e4c17917375c088a2e9c..87063ee3f416098685fdbc8d39b81872dc158ed4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -17,7 +17,6 @@
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-//  SMESH SMESH : implementaion of SMESH idl descriptions
 //  File   : StdMeshers_QuadToTriaAdaptor.hxx
 //  Module : SMESH
 //
@@ -61,6 +60,8 @@ public:
 
   bool Compute(SMESH_Mesh& aMesh);
 
+  const TopoDS_Shape& GetShape() const { return myShape; }
+
 protected:
 
   int Preparation(const SMDS_MeshElement* face,
@@ -87,11 +88,10 @@ protected:
                      std::set<const SMDS_MeshNode*>& nodesToMove);
 
 
+  TopoDS_Shape                      myShape;
   std::set<const SMDS_MeshElement*> myRemovedTrias;
-
   std::list< const SMDS_MeshNode* > myDegNodes;
-
-  const SMESH_ElementSearcher* myElemSearcher;
+  const SMESH_ElementSearcher*      myElemSearcher;
 };
 
 #endif