Salome HOME
merge from branch BR_SMDS_MEMIMP 29 nov 2010
[modules/smesh.git] / src / StdMeshers / StdMeshers_QuadToTriaAdaptor.hxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  SMESH SMESH : implementaion of SMESH idl descriptions
21 //  File   : StdMeshers_QuadToTriaAdaptor.hxx
22 //  Module : SMESH
23 //
24 #ifndef _SMESH_QuadToTriaAdaptor_HXX_
25 #define _SMESH_QuadToTriaAdaptor_HXX_
26
27 #include "SMESH_StdMeshers.hxx"
28
29 class SMESH_Mesh;
30 class SMESH_ElementSearcher;
31 class SMDS_MeshElement;
32 class SMDS_MeshNode;
33 class SMDS_MeshFace;
34 class Handle_TColgp_HArray1OfPnt;
35 class Handle_TColgp_HArray1OfVec;
36 class gp_Pnt;
37 class gp_Vec;
38
39
40 #include <map>
41 #include <list>
42 #include <vector>
43
44 #include <TopoDS_Shape.hxx>
45
46 typedef std::map<const SMDS_MeshElement*, bool>               TRemTrias;
47
48 /*!
49  * \brief "Transforms" quadrilateral faces into triangular ones by creation of pyramids
50  */
51 class STDMESHERS_EXPORT StdMeshers_QuadToTriaAdaptor
52 {
53 public:
54   StdMeshers_QuadToTriaAdaptor();
55
56   ~StdMeshers_QuadToTriaAdaptor();
57
58   bool Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
59
60   bool Compute(SMESH_Mesh& aMesh);
61
62   const std::list<const SMDS_MeshFace*>* GetTriangles(const SMDS_MeshElement* aFace);
63
64   /*!
65    * \brief Return sum of generated and already present triangles
66    */
67   int TotalNbOfTriangles() const { return myNbTriangles; }
68
69   TopoDS_Shape GetShape() const { return myShape; }
70
71 protected:
72
73   //bool CheckDegenerate(const SMDS_MeshElement* aFace);
74
75   int Preparation(const SMDS_MeshElement* face,
76                   Handle_TColgp_HArray1OfPnt& PN,
77                   Handle_TColgp_HArray1OfVec& VN,
78                   std::vector<const SMDS_MeshNode*>& FNodes,
79                   gp_Pnt& PC, gp_Vec& VNorm,
80                   const SMDS_MeshElement** volumes=0);
81
82   bool CheckIntersection(const gp_Pnt& P, const gp_Pnt& PC,
83                          gp_Pnt& Pint, SMESH_Mesh& aMesh,
84                          const TopoDS_Shape& aShape,
85                          const SMDS_MeshElement* NotCheckedFace);
86
87   bool Compute2ndPart(SMESH_Mesh& aMesh);
88
89
90   typedef std::list<const SMDS_MeshFace* >                   TTriaList;
91   typedef std::multimap<const SMDS_MeshElement*, TTriaList > TQuad2Trias;
92   TQuad2Trias  myResMap;
93   TRemTrias myTempTriangles;
94
95   std::vector<const SMDS_MeshElement*> myPyramids;
96
97   std::list< const SMDS_MeshNode* > myDegNodes;
98
99   const SMESH_ElementSearcher* myElemSearcher;
100
101   int myNbTriangles;
102
103   TopoDS_Shape myShape;
104 };
105
106 #endif