smesh/src/StdMeshers/StdMeshers_QuadToTriaAdaptor.hxx

98 lines
3.0 KiB
C++
Raw Normal View History

2015-02-13 13:38:35 +05:00
// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06: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
2014-02-20 18:25:37 +06:00
// version 2.1 of the License, or (at your option) any later version.
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// 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.
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// 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
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// File : StdMeshers_QuadToTriaAdaptor.hxx
// Module : SMESH
//
#ifndef _SMESH_QuadToTriaAdaptor_HXX_
#define _SMESH_QuadToTriaAdaptor_HXX_
2012-08-09 16:03:55 +06:00
#include "SMESH_StdMeshers.hxx"
#include "SMESH_ProxyMesh.hxx"
class SMESH_Mesh;
class SMESH_ElementSearcher;
class SMDS_MeshElement;
class SMDS_MeshNode;
class SMDS_MeshFace;
class TColgp_Array1OfPnt;
class TColgp_Array1OfVec;
2012-08-09 16:03:55 +06:00
class gp_Pnt;
class gp_Vec;
2009-02-17 10:27:49 +05:00
2012-08-09 16:03:55 +06:00
#include <set>
2009-02-17 10:27:49 +05:00
#include <list>
#include <vector>
2012-08-09 16:03:55 +06:00
#include <TopoDS_Shape.hxx>
/*!
* \brief "Transforms" quadrilateral faces into triangular ones by creation of pyramids
*/
class STDMESHERS_EXPORT StdMeshers_QuadToTriaAdaptor : public SMESH_ProxyMesh
2009-02-17 10:27:49 +05:00
{
public:
StdMeshers_QuadToTriaAdaptor();
~StdMeshers_QuadToTriaAdaptor();
2012-08-09 16:03:55 +06:00
bool Compute(SMESH_Mesh& aMesh,
const TopoDS_Shape& aShape,
SMESH_ProxyMesh* aProxyMesh=0);
2009-02-17 10:27:49 +05:00
bool Compute(SMESH_Mesh& aMesh);
2012-08-09 16:03:55 +06:00
const TopoDS_Shape& GetShape() const { return myShape; }
2009-02-17 10:27:49 +05:00
protected:
int Preparation(const SMDS_MeshElement* face,
TColgp_Array1OfPnt& PN,
TColgp_Array1OfVec& VN,
2009-02-17 10:27:49 +05:00
std::vector<const SMDS_MeshNode*>& FNodes,
2012-08-09 16:03:55 +06: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,
2012-08-09 16:03:55 +06:00
const SMDS_MeshElement* NotCheckedFace);
2009-02-17 10:27:49 +05:00
2012-08-09 16:03:55 +06:00
bool Compute2ndPart(SMESH_Mesh& aMesh,
const std::vector<const SMDS_MeshElement*>& pyramids);
2009-02-17 10:27:49 +05:00
2012-08-09 16:03:55 +06:00
void MergePiramids( const SMDS_MeshElement* PrmI,
const SMDS_MeshElement* PrmJ,
std::set<const SMDS_MeshNode*> & nodesToMove);
void MergeAdjacent(const SMDS_MeshElement* PrmI,
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;
2009-02-17 10:27:49 +05:00
};
#endif