1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0021593: Small improvement

New parameter for BRepMesh; Test case
This commit is contained in:
oan 2014-12-03 11:51:58 +03:00 committed by bugmaster
parent c0bd0de183
commit a319f03ff9
8 changed files with 137 additions and 50 deletions

View File

@ -93,7 +93,8 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret(
const Standard_Boolean theInshape,
const Standard_Boolean theRelative,
const Standard_Boolean theShapetrigu,
const Standard_Boolean isInParallel)
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,7 +114,8 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret(
//function : BRepMesh_FastDiscret
//purpose :
//=======================================================================
BRepMesh_FastDiscret::BRepMesh_FastDiscret(const TopoDS_Shape& theShape,
BRepMesh_FastDiscret::BRepMesh_FastDiscret(
const TopoDS_Shape& theShape,
const Standard_Real theDefle,
const Standard_Real theAngl,
const Bnd_Box& theBox,
@ -120,7 +123,8 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret(const TopoDS_Shape& theShape,
const Standard_Boolean theInshape,
const Standard_Boolean theRelative,
const Standard_Boolean theShapetrigu,
const Standard_Boolean isInParallel)
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)

View File

@ -58,14 +58,16 @@ class BRepMesh_FastDiscret : public Standard_Transient
{
public:
Standard_EXPORT BRepMesh_FastDiscret(const Standard_Real defle,
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 isInParallel = Standard_False,
const Standard_Boolean isInternalVerticesMode = Standard_True);
//! if the boolean <relative> is True, the <br>
//! deflection used for the polygonalisation of <br>
@ -79,7 +81,8 @@ public:
//! <br>
//! if <inshape> is True, the calculated <br>
//! triangulation will be stored in the shape. <br>
Standard_EXPORT BRepMesh_FastDiscret(const TopoDS_Shape& shape,
Standard_EXPORT BRepMesh_FastDiscret(
const TopoDS_Shape& shape,
const Standard_Real defle,
const Standard_Real angle,
const Bnd_Box& B,
@ -87,7 +90,8 @@ public:
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 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)

View File

@ -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<FixedVExplorer> aFixedVExplorer = new FixedVExplorer(theVertex);
Standard_Integer aIndex = myAttribute->GetVertexIndex(aFixedVExplorer);

View File

@ -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);

View File

@ -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);
}

View File

@ -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<TopoDS_Face> myFaces;
Standard_Boolean myInternalVerticesMode;
};
DEFINE_STANDARD_HANDLE(BRepMesh_IncrementalMesh,BRepMesh_DiscretRoot)

View File

@ -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;
}
@ -145,6 +147,7 @@ options:\n\
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();

41
tests/bugs/mesh/bug21593 Normal file
View File

@ -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)"
}