2010-05-14 21:32:37 +06:00
|
|
|
// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
|
|
//
|
2010-05-14 21:32:37 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// SMESH SMESH : implementaion of SMESH idl descriptions
|
|
|
|
// File : StdMeshers_QuadToTriaAdaptor.hxx
|
|
|
|
// Module : SMESH
|
|
|
|
//
|
|
|
|
#ifndef _SMESH_QuadToTriaAdaptor_HXX_
|
|
|
|
#define _SMESH_QuadToTriaAdaptor_HXX_
|
|
|
|
|
2009-02-26 20:04:36 +05:00
|
|
|
#include "SMESH_StdMeshers.hxx"
|
2010-02-09 16:17:06 +05:00
|
|
|
#include "SMDS_FaceOfNodes.hxx"
|
|
|
|
|
|
|
|
class SMESH_Mesh;
|
|
|
|
class SMDS_MeshElement;
|
|
|
|
class SMDS_MeshNode;
|
|
|
|
class Handle(TColgp_HArray1OfPnt);
|
|
|
|
class Handle(TColgp_HArray1OfVec);
|
|
|
|
class TopoDS_Shape;
|
|
|
|
class gp_Pnt;
|
|
|
|
class gp_Vec;
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <list>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class STDMESHERS_EXPORT StdMeshers_QuadToTriaAdaptor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
~StdMeshers_QuadToTriaAdaptor();
|
|
|
|
|
|
|
|
bool Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
|
|
|
|
|
|
|
|
bool Compute(SMESH_Mesh& aMesh);
|
|
|
|
|
2009-05-19 21:41:19 +06:00
|
|
|
const std::list<const SMDS_FaceOfNodes*>* GetTriangles(const SMDS_MeshElement* aFace);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
//bool CheckDegenerate(const SMDS_MeshElement* aFace);
|
|
|
|
|
|
|
|
int Preparation(const SMDS_MeshElement* face,
|
2009-05-19 21:41:19 +06:00
|
|
|
Handle(TColgp_HArray1OfPnt)& PN,
|
|
|
|
Handle(TColgp_HArray1OfVec)& VN,
|
2009-02-17 10:27:49 +05:00
|
|
|
std::vector<const SMDS_MeshNode*>& FNodes,
|
2010-02-09 16:17:06 +05:00
|
|
|
gp_Pnt& PC, gp_Vec& VNorm,
|
|
|
|
const SMDS_MeshElement** volumes=0);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
bool CheckIntersection(const gp_Pnt& P, const gp_Pnt& PC,
|
|
|
|
gp_Pnt& Pint, SMESH_Mesh& aMesh,
|
|
|
|
const TopoDS_Shape& aShape,
|
|
|
|
const TopoDS_Shape& NotCheckedFace);
|
|
|
|
|
|
|
|
bool Compute2ndPart(SMESH_Mesh& aMesh);
|
|
|
|
|
2010-02-09 16:17:06 +05:00
|
|
|
typedef std::list<const SMDS_FaceOfNodes* > TTriaList;
|
|
|
|
typedef std::multimap<const SMDS_MeshElement*, TTriaList > TQuad2Trias;
|
|
|
|
typedef std::map<const SMDS_MeshElement*, TTriaList *, TIDCompare> TPyram2Trias;
|
|
|
|
|
|
|
|
TQuad2Trias myResMap;
|
|
|
|
TPyram2Trias myPyram2Trias;
|
2009-05-19 21:41:19 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
std::list< const SMDS_MeshNode* > myDegNodes;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|