From a319f03ff91077a41380f14831f77382955ee4c5 Mon Sep 17 00:00:00 2001 From: oan Date: Wed, 3 Dec 2014 11:51:58 +0300 Subject: [PATCH] 0021593: Small improvement New parameter for BRepMesh; Test case --- src/BRepMesh/BRepMesh_FastDiscret.cxx | 45 +++++++++++++---------- src/BRepMesh/BRepMesh_FastDiscret.hxx | 39 +++++++++++--------- src/BRepMesh/BRepMesh_FastDiscretFace.cxx | 10 +++-- src/BRepMesh/BRepMesh_FastDiscretFace.hxx | 7 +++- src/BRepMesh/BRepMesh_IncrementalMesh.cxx | 9 +++-- src/BRepMesh/BRepMesh_IncrementalMesh.hxx | 13 +++++++ src/MeshTest/MeshTest.cxx | 23 +++++++++--- tests/bugs/mesh/bug21593 | 41 +++++++++++++++++++++ 8 files changed, 137 insertions(+), 50 deletions(-) create mode 100644 tests/bugs/mesh/bug21593 diff --git a/src/BRepMesh/BRepMesh_FastDiscret.cxx b/src/BRepMesh/BRepMesh_FastDiscret.cxx index 273b152697..72e4ac8a6c 100644 --- a/src/BRepMesh/BRepMesh_FastDiscret.cxx +++ b/src/BRepMesh/BRepMesh_FastDiscret.cxx @@ -86,14 +86,15 @@ IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_FastDiscret, Standard_Transient) //purpose : //======================================================================= BRepMesh_FastDiscret::BRepMesh_FastDiscret( - const Standard_Real theDefle, - const Standard_Real theAngl, - const Bnd_Box& theBox, - const Standard_Boolean theWithShare, - const Standard_Boolean theInshape, - const Standard_Boolean theRelative, - const Standard_Boolean theShapetrigu, - const Standard_Boolean isInParallel) + const Standard_Real theDefle, + const Standard_Real theAngl, + const Bnd_Box& theBox, + const Standard_Boolean theWithShare, + const Standard_Boolean theInshape, + const Standard_Boolean theRelative, + const Standard_Boolean theShapetrigu, + const Standard_Boolean isInParallel, + const Standard_Boolean isInternalVerticesMode) : myAngle (theAngl), myDeflection (theDefle), myWithShare (theWithShare), @@ -102,7 +103,8 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret( myShapetrigu (theShapetrigu), myInshape (theInshape), myBoundaryVertices(new BRepMesh::DMapOfVertexInteger), - myBoundaryPoints(new BRepMesh::DMapOfIntegerPnt) + myBoundaryPoints(new BRepMesh::DMapOfIntegerPnt), + myInternalVerticesMode(isInternalVerticesMode) { if ( myRelative ) BRepMesh_ShapeTool::BoxMaxDimension(theBox, myDtotale); @@ -112,15 +114,17 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret( //function : BRepMesh_FastDiscret //purpose : //======================================================================= -BRepMesh_FastDiscret::BRepMesh_FastDiscret(const TopoDS_Shape& theShape, - const Standard_Real theDefle, - const Standard_Real theAngl, - const Bnd_Box& theBox, - const Standard_Boolean theWithShare, - const Standard_Boolean theInshape, - const Standard_Boolean theRelative, - const Standard_Boolean theShapetrigu, - const Standard_Boolean isInParallel) +BRepMesh_FastDiscret::BRepMesh_FastDiscret( + const TopoDS_Shape& theShape, + const Standard_Real theDefle, + const Standard_Real theAngl, + const Bnd_Box& theBox, + const Standard_Boolean theWithShare, + const Standard_Boolean theInshape, + const Standard_Boolean theRelative, + const Standard_Boolean theShapetrigu, + const Standard_Boolean isInParallel, + const Standard_Boolean isInternalVerticesMode) : myAngle (theAngl), myDeflection (theDefle), myWithShare (theWithShare), @@ -129,7 +133,8 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret(const TopoDS_Shape& theShape, myShapetrigu (theShapetrigu), myInshape (theInshape), myBoundaryVertices(new BRepMesh::DMapOfVertexInteger), - myBoundaryPoints(new BRepMesh::DMapOfIntegerPnt) + myBoundaryPoints(new BRepMesh::DMapOfIntegerPnt), + myInternalVerticesMode(isInternalVerticesMode) { if ( myRelative ) BRepMesh_ShapeTool::BoxMaxDimension(theBox, myDtotale); @@ -193,7 +198,7 @@ void BRepMesh_FastDiscret::Process(const TopoDS_Face& theFace) const { OCC_CATCH_SIGNALS - BRepMesh_FastDiscretFace aTool(GetAngle()); + BRepMesh_FastDiscretFace aTool(GetAngle(), myInternalVerticesMode); aTool.Perform(anAttribute); } catch (Standard_Failure) diff --git a/src/BRepMesh/BRepMesh_FastDiscret.hxx b/src/BRepMesh/BRepMesh_FastDiscret.hxx index b1fe24d407..e0c6db9c14 100644 --- a/src/BRepMesh/BRepMesh_FastDiscret.hxx +++ b/src/BRepMesh/BRepMesh_FastDiscret.hxx @@ -58,14 +58,16 @@ class BRepMesh_FastDiscret : public Standard_Transient { public: - Standard_EXPORT BRepMesh_FastDiscret(const Standard_Real defle, - const Standard_Real angle, - const Bnd_Box& B, - const Standard_Boolean withShare = Standard_True, - const Standard_Boolean inshape = Standard_False, - const Standard_Boolean relative = Standard_False, - const Standard_Boolean shapetrigu = Standard_False, - const Standard_Boolean isInParallel = Standard_False); + Standard_EXPORT BRepMesh_FastDiscret( + const Standard_Real defle, + const Standard_Real angle, + const Bnd_Box& B, + const Standard_Boolean withShare = Standard_True, + const Standard_Boolean inshape = Standard_False, + const Standard_Boolean relative = Standard_False, + const Standard_Boolean shapetrigu = Standard_False, + const Standard_Boolean isInParallel = Standard_False, + const Standard_Boolean isInternalVerticesMode = Standard_True); //! if the boolean is True, the
//! deflection used for the polygonalisation of
@@ -79,15 +81,17 @@ public: //!
//! if is True, the calculated
//! triangulation will be stored in the shape.
- Standard_EXPORT BRepMesh_FastDiscret(const TopoDS_Shape& shape, - const Standard_Real defle, - const Standard_Real angle, - const Bnd_Box& B, - const Standard_Boolean withShare = Standard_True, - const Standard_Boolean inshape = Standard_False, - const Standard_Boolean relative = Standard_False, - const Standard_Boolean shapetrigu = Standard_False, - const Standard_Boolean isInParallel = Standard_False); + Standard_EXPORT BRepMesh_FastDiscret( + const TopoDS_Shape& shape, + const Standard_Real defle, + const Standard_Real angle, + const Bnd_Box& B, + const Standard_Boolean withShare = Standard_True, + const Standard_Boolean inshape = Standard_False, + const Standard_Boolean relative = Standard_False, + const Standard_Boolean shapetrigu = Standard_False, + const Standard_Boolean isInParallel = Standard_False, + const Standard_Boolean isInternalVerticesMode = Standard_True); //! Build triangulation on the whole shape. Standard_EXPORT void Perform(const TopoDS_Shape& shape); @@ -362,6 +366,7 @@ private: // Fast access to attributes of current face Handle(BRepMesh_FaceAttribute) myAttribute; TopTools_IndexedDataMapOfShapeListOfShape mySharedFaces; + Standard_Boolean myInternalVerticesMode; }; DEFINE_STANDARD_HANDLE(BRepMesh_FastDiscret, Standard_Transient) diff --git a/src/BRepMesh/BRepMesh_FastDiscretFace.cxx b/src/BRepMesh/BRepMesh_FastDiscretFace.cxx index 5ec84b646b..ad1471c3df 100644 --- a/src/BRepMesh/BRepMesh_FastDiscretFace.cxx +++ b/src/BRepMesh/BRepMesh_FastDiscretFace.cxx @@ -141,10 +141,11 @@ namespace //function : BRepMesh_FastDiscretFace //purpose : //======================================================================= -BRepMesh_FastDiscretFace::BRepMesh_FastDiscretFace - (const Standard_Real theAngle) +BRepMesh_FastDiscretFace::BRepMesh_FastDiscretFace( + const Standard_Real theAngle, + const Standard_Boolean isInternalVerticesMode) : myAngle(theAngle), - myInternalVerticesMode(Standard_True) + myInternalVerticesMode(isInternalVerticesMode) { myAllocator = new NCollection_IncAllocator( BRepMesh::MEMORY_BLOCK_SIZE_HUGE); @@ -1247,6 +1248,9 @@ void BRepMesh_FastDiscretFace::add(const TopoDS_Vertex& theVertex) OCC_CATCH_SIGNALS gp_Pnt2d aPnt2d = BRep_Tool::Parameters(theVertex, myAttribute->Face()); + // check UV values for internal vertices + if (myAttribute->ChangeClassifier()->Perform(aPnt2d) != TopAbs_IN) + return; NCollection_Handle aFixedVExplorer = new FixedVExplorer(theVertex); Standard_Integer aIndex = myAttribute->GetVertexIndex(aFixedVExplorer); diff --git a/src/BRepMesh/BRepMesh_FastDiscretFace.hxx b/src/BRepMesh/BRepMesh_FastDiscretFace.hxx index 6f469b83b1..41098452cf 100644 --- a/src/BRepMesh/BRepMesh_FastDiscretFace.hxx +++ b/src/BRepMesh/BRepMesh_FastDiscretFace.hxx @@ -50,8 +50,13 @@ class BRepMesh_FastDiscretFace : public Standard_Transient { public: + //! Constructor. + //! @param theAngle deviation angle to be used for surface tessellation. + //! @param isInternalVerticesMode flag enabling/disabling internal + //! vertices mode. Standard_EXPORT BRepMesh_FastDiscretFace( - const Standard_Real theAngle); + const Standard_Real theAngle, + const Standard_Boolean isInternalVerticesMode); Standard_EXPORT void Perform(const Handle(BRepMesh_FaceAttribute)& theAttribute); diff --git a/src/BRepMesh/BRepMesh_IncrementalMesh.cxx b/src/BRepMesh/BRepMesh_IncrementalMesh.cxx index 358a44b56a..31cbdfc1e7 100644 --- a/src/BRepMesh/BRepMesh_IncrementalMesh.cxx +++ b/src/BRepMesh/BRepMesh_IncrementalMesh.cxx @@ -73,7 +73,8 @@ IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_IncrementalMesh, BRepMesh_DiscretRoot) //======================================================================= BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh() : myRelative (Standard_False), - myInParallel (Standard_False) + myInParallel (Standard_False), + myInternalVerticesMode(Standard_True) { } @@ -88,7 +89,8 @@ BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh( const Standard_Real theAngDeflection, const Standard_Boolean isInParallel) : myRelative (isRelative), - myInParallel(isInParallel) + myInParallel(isInParallel), + myInternalVerticesMode(Standard_True) { myDeflection = theLinDeflection; myAngle = theAngDeflection; @@ -143,7 +145,8 @@ void BRepMesh_IncrementalMesh::init() BRepMesh_ShapeTool::BoxMaxDimension(aBox, myMaxShapeSize); myMesh = new BRepMesh_FastDiscret(myDeflection, myAngle, aBox, - Standard_True, Standard_True, myRelative, Standard_True, myInParallel); + Standard_True, Standard_True, myRelative, Standard_True, + myInParallel, myInternalVerticesMode); myMesh->InitSharedFaces(myShape); } diff --git a/src/BRepMesh/BRepMesh_IncrementalMesh.hxx b/src/BRepMesh/BRepMesh_IncrementalMesh.hxx index 879b9b8cf2..a789fe387a 100644 --- a/src/BRepMesh/BRepMesh_IncrementalMesh.hxx +++ b/src/BRepMesh/BRepMesh_IncrementalMesh.hxx @@ -103,6 +103,18 @@ public: //! @name accessing to parameters. return myInParallel; } + //! Enables/disables internal vertices mode. + inline void SetInternalVerticesMode(const Standard_Boolean isEnabled) + { + myInternalVerticesMode = isEnabled; + } + + //! Returns flag indicating is internal vertices mode enabled/disabled. + inline Standard_Boolean IsInternalVerticesMode() const + { + return myInternalVerticesMode; + } + public: //! @name plugin API //! Plugin interface for the Mesh Factories. @@ -193,6 +205,7 @@ protected: Standard_Real myMaxShapeSize; Standard_Integer myStatus; NCollection_Vector myFaces; + Standard_Boolean myInternalVerticesMode; }; DEFINE_STANDARD_HANDLE(BRepMesh_IncrementalMesh,BRepMesh_DiscretRoot) diff --git a/src/MeshTest/MeshTest.cxx b/src/MeshTest/MeshTest.cxx index 519e01e29e..30bdb55742 100644 --- a/src/MeshTest/MeshTest.cxx +++ b/src/MeshTest/MeshTest.cxx @@ -130,6 +130,8 @@ options:\n\ -a val angular deflection in deg (default ~28.64 deg = 0.5 rad)\n\ -relative notifies that relative deflection is used\n\ (switched off by default)\n\ + -int_vert_off disables insertion of internal vertices into mesh\n\ + (enabled by default)\n\ -parallel enables parallel execution (switched off by default)\n"; return 0; } @@ -141,10 +143,11 @@ options:\n\ return 0; } - Standard_Real aLinDeflection = Max(Draw::Atof(argv[2]), Precision::Confusion()); - Standard_Real aAngDeflection = 0.5; - Standard_Boolean isRelative = Standard_False; - Standard_Boolean isInParallel = Standard_False; + Standard_Real aLinDeflection = Max(Draw::Atof(argv[2]), Precision::Confusion()); + Standard_Real aAngDeflection = 0.5; + Standard_Boolean isRelative = Standard_False; + Standard_Boolean isInParallel = Standard_False; + Standard_Boolean isIntVertices = Standard_True; if (nbarg > 3) { @@ -160,6 +163,8 @@ options:\n\ isRelative = Standard_True; else if (aOpt == "-parallel") isInParallel = Standard_True; + else if (aOpt == "-int_vert_off") + isIntVertices = Standard_False; else if (i < nbarg) { Standard_Real aVal = Draw::Atof(argv[i++]); @@ -174,8 +179,14 @@ options:\n\ di << "Incremental Mesh, multi-threading " << (isInParallel ? "ON" : "OFF") << "\n"; - BRepMesh_IncrementalMesh aMesher(aShape, aLinDeflection, isRelative, - aAngDeflection, isInParallel); + BRepMesh_IncrementalMesh aMesher; + aMesher.SetShape (aShape); + aMesher.SetDeflection (aLinDeflection); + aMesher.SetRelative (isRelative); + aMesher.SetAngle (aAngDeflection); + aMesher.SetParallel (isInParallel); + aMesher.SetInternalVerticesMode(isIntVertices); + aMesher.Perform(); di << "Meshing statuses: "; Standard_Integer statusFlags = aMesher.GetStatusFlags(); diff --git a/tests/bugs/mesh/bug21593 b/tests/bugs/mesh/bug21593 new file mode 100644 index 0000000000..5387bdff82 --- /dev/null +++ b/tests/bugs/mesh/bug21593 @@ -0,0 +1,41 @@ +# test for #21593: compare number of triangles/nodes +# produced by BRepMesh for face with internal vertices +# depening on value of InternalVerticesMode flag. + +restore [locate_data_file bug21593_internal_vertices.brep] a + +# enable internal vertices mode +tclean a +incmesh a 0.1 +set trinfo_a [trinfo a] +regexp {([0-9]+) triangles} $trinfo_a str nbtriangles_a +regexp {([0-9]+) nodes} $trinfo_a str nbnodes_a + +# check triangles +if { $nbtriangles_a != 10 } { + puts "Error: incorrect number of triangles in case of internal vertices mode is ON ($nbtriangles_a)" +} + +# check nodes +if { $nbnodes_a != 8 } { + puts "Error: incorrect number of nodes in case of internal vertices mode is ON ($nbnodes_a)" +} + + +# disable internal vertices mode +tclean a +incmesh a 0.1 -int_vert_off +set trinfo_a [trinfo a] +regexp {([0-9]+) triangles} $trinfo_a str nbtriangles_a +regexp {([0-9]+) nodes} $trinfo_a str nbnodes_a + +# check triangles +if { $nbtriangles_a != 2 } { + puts "Error: incorrect number of triangles in case of internal vertices mode is OFF ($nbtriangles_a)" +} + +# check nodes +if { $nbnodes_a != 4 } { + puts "Error: incorrect number of nodes in case of internal vertices mode is OFF ($nbnodes_a)" +} +