X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FStdMeshers%2FStdMeshers_Quadrangle_2D.hxx;h=eb43083cb0c4f5f7506c7485dac0532b77e5facb;hp=460a5e4ab7fbbd948b0f064face9a77f1f42be1b;hb=53cfbcdd3398697cb1581f0dcd92fb3cd7805fc3;hpb=7a65c9fad427b1ccba6b9ccae612296e5092a324 diff --git a/src/StdMeshers/StdMeshers_Quadrangle_2D.hxx b/src/StdMeshers/StdMeshers_Quadrangle_2D.hxx index 460a5e4ab..eb43083cb 100644 --- a/src/StdMeshers/StdMeshers_Quadrangle_2D.hxx +++ b/src/StdMeshers/StdMeshers_Quadrangle_2D.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -46,11 +46,11 @@ struct uvPtStruct; enum TSideID { QUAD_BOTTOM_SIDE=0, QUAD_RIGHT_SIDE, QUAD_TOP_SIDE, QUAD_LEFT_SIDE, NB_QUAD_SIDES }; typedef uvPtStruct UVPtStruct; -struct FaceQuadStruct +struct STDMESHERS_EXPORT FaceQuadStruct { - struct Side // a side of FaceQuadStruct + struct STDMESHERS_EXPORT Side // a side of FaceQuadStruct { - struct Contact // contact of two sides + struct STDMESHERS_EXPORT Contact // contact of two sides { int point; // index of a grid point of this side where two sides meat Side* other_side; @@ -82,7 +82,7 @@ struct FaceQuadStruct return GetUVPtStruct()[ to-nbNodeOut-(IsReversed() ? -1 : +1)]; } // some sortcuts - const vector& GetUVPtStruct(bool isXConst=0, double constValue=0) const + const std::vector& GetUVPtStruct(bool isXConst=0, double constValue=0) const { return nbNodeOut ? grid->SimulateUVPtStruct( NbPoints()-nbNodeOut-1, isXConst, constValue ) : grid->GetUVPtStruct( isXConst, constValue ); @@ -135,7 +135,7 @@ struct FaceQuadStruct class STDMESHERS_EXPORT StdMeshers_Quadrangle_2D: public SMESH_2D_Algo { public: - StdMeshers_Quadrangle_2D(int hypId, int studyId, SMESH_Gen* gen); + StdMeshers_Quadrangle_2D(int hypId, SMESH_Gen* gen); virtual ~StdMeshers_Quadrangle_2D(); virtual bool CheckHypothesis(SMESH_Mesh& aMesh, @@ -155,8 +155,13 @@ class STDMESHERS_EXPORT StdMeshers_Quadrangle_2D: public SMESH_2D_Algo FaceQuadStruct::Ptr CheckNbEdges(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape, - const bool considerMesh=false); + const bool considerMesh = false, + SMESH_MesherHelper* aFaceHelper = 0); + virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const + { + return IsApplicable( shape, toCheckAll ); + } static bool IsApplicable(const TopoDS_Shape & aShape, bool toCheckAll); protected: