Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef _SMESH_RadialQuadrangle_1D2D_HXX_
00025 #define _SMESH_RadialQuadrangle_1D2D_HXX_
00026
00027 #include "SMESH_StdMeshers.hxx"
00028
00029 #include "SMESH_2D_Algo.hxx"
00030
00031 #include <TopoDS_Edge.hxx>
00032
00033 #include <vector>
00034
00035 class StdMeshers_NumberOfLayers;
00036 class StdMeshers_LayerDistribution;
00037 class SMESH_MesherHelper;
00038 class gp_Pnt;
00039
00040 class STDMESHERS_EXPORT StdMeshers_RadialQuadrangle_1D2D: public SMESH_2D_Algo
00041 {
00042 public:
00043 StdMeshers_RadialQuadrangle_1D2D(int hypId, int studyId, SMESH_Gen* gen);
00044 virtual ~StdMeshers_RadialQuadrangle_1D2D();
00045
00046 virtual bool CheckHypothesis(SMESH_Mesh& aMesh,
00047 const TopoDS_Shape& aShape,
00048 SMESH_Hypothesis::Hypothesis_Status& aStatus);
00049
00050 virtual bool Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
00051
00052 virtual bool Evaluate(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape,
00053 MapShapeNbElems& aResMap);
00060 virtual void SubmeshRestored(SMESH_subMesh* subMesh);
00061
00062 protected:
00063
00064 bool computeLayerPositions(const gp_Pnt& p1,
00065 const gp_Pnt& p2,
00066 const TopoDS_Edge& linEdge=TopoDS_Edge(),
00067 bool* linEdgeComputed = 0);
00068
00069
00070 const StdMeshers_NumberOfLayers* myNbLayerHypo;
00071 const StdMeshers_LayerDistribution* myDistributionHypo;
00072 SMESH_MesherHelper* myHelper;
00073 std::vector< double > myLayerPositions;
00074 };
00075
00076 #endif