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:
parent
c0bd0de183
commit
a319f03ff9
@ -86,14 +86,15 @@ IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_FastDiscret, Standard_Transient)
|
|||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
BRepMesh_FastDiscret::BRepMesh_FastDiscret(
|
BRepMesh_FastDiscret::BRepMesh_FastDiscret(
|
||||||
const Standard_Real theDefle,
|
const Standard_Real theDefle,
|
||||||
const Standard_Real theAngl,
|
const Standard_Real theAngl,
|
||||||
const Bnd_Box& theBox,
|
const Bnd_Box& theBox,
|
||||||
const Standard_Boolean theWithShare,
|
const Standard_Boolean theWithShare,
|
||||||
const Standard_Boolean theInshape,
|
const Standard_Boolean theInshape,
|
||||||
const Standard_Boolean theRelative,
|
const Standard_Boolean theRelative,
|
||||||
const Standard_Boolean theShapetrigu,
|
const Standard_Boolean theShapetrigu,
|
||||||
const Standard_Boolean isInParallel)
|
const Standard_Boolean isInParallel,
|
||||||
|
const Standard_Boolean isInternalVerticesMode)
|
||||||
: myAngle (theAngl),
|
: myAngle (theAngl),
|
||||||
myDeflection (theDefle),
|
myDeflection (theDefle),
|
||||||
myWithShare (theWithShare),
|
myWithShare (theWithShare),
|
||||||
@ -102,7 +103,8 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret(
|
|||||||
myShapetrigu (theShapetrigu),
|
myShapetrigu (theShapetrigu),
|
||||||
myInshape (theInshape),
|
myInshape (theInshape),
|
||||||
myBoundaryVertices(new BRepMesh::DMapOfVertexInteger),
|
myBoundaryVertices(new BRepMesh::DMapOfVertexInteger),
|
||||||
myBoundaryPoints(new BRepMesh::DMapOfIntegerPnt)
|
myBoundaryPoints(new BRepMesh::DMapOfIntegerPnt),
|
||||||
|
myInternalVerticesMode(isInternalVerticesMode)
|
||||||
{
|
{
|
||||||
if ( myRelative )
|
if ( myRelative )
|
||||||
BRepMesh_ShapeTool::BoxMaxDimension(theBox, myDtotale);
|
BRepMesh_ShapeTool::BoxMaxDimension(theBox, myDtotale);
|
||||||
@ -112,15 +114,17 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret(
|
|||||||
//function : BRepMesh_FastDiscret
|
//function : BRepMesh_FastDiscret
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
BRepMesh_FastDiscret::BRepMesh_FastDiscret(const TopoDS_Shape& theShape,
|
BRepMesh_FastDiscret::BRepMesh_FastDiscret(
|
||||||
const Standard_Real theDefle,
|
const TopoDS_Shape& theShape,
|
||||||
const Standard_Real theAngl,
|
const Standard_Real theDefle,
|
||||||
const Bnd_Box& theBox,
|
const Standard_Real theAngl,
|
||||||
const Standard_Boolean theWithShare,
|
const Bnd_Box& theBox,
|
||||||
const Standard_Boolean theInshape,
|
const Standard_Boolean theWithShare,
|
||||||
const Standard_Boolean theRelative,
|
const Standard_Boolean theInshape,
|
||||||
const Standard_Boolean theShapetrigu,
|
const Standard_Boolean theRelative,
|
||||||
const Standard_Boolean isInParallel)
|
const Standard_Boolean theShapetrigu,
|
||||||
|
const Standard_Boolean isInParallel,
|
||||||
|
const Standard_Boolean isInternalVerticesMode)
|
||||||
: myAngle (theAngl),
|
: myAngle (theAngl),
|
||||||
myDeflection (theDefle),
|
myDeflection (theDefle),
|
||||||
myWithShare (theWithShare),
|
myWithShare (theWithShare),
|
||||||
@ -129,7 +133,8 @@ BRepMesh_FastDiscret::BRepMesh_FastDiscret(const TopoDS_Shape& theShape,
|
|||||||
myShapetrigu (theShapetrigu),
|
myShapetrigu (theShapetrigu),
|
||||||
myInshape (theInshape),
|
myInshape (theInshape),
|
||||||
myBoundaryVertices(new BRepMesh::DMapOfVertexInteger),
|
myBoundaryVertices(new BRepMesh::DMapOfVertexInteger),
|
||||||
myBoundaryPoints(new BRepMesh::DMapOfIntegerPnt)
|
myBoundaryPoints(new BRepMesh::DMapOfIntegerPnt),
|
||||||
|
myInternalVerticesMode(isInternalVerticesMode)
|
||||||
{
|
{
|
||||||
if ( myRelative )
|
if ( myRelative )
|
||||||
BRepMesh_ShapeTool::BoxMaxDimension(theBox, myDtotale);
|
BRepMesh_ShapeTool::BoxMaxDimension(theBox, myDtotale);
|
||||||
@ -193,7 +198,7 @@ void BRepMesh_FastDiscret::Process(const TopoDS_Face& theFace) const
|
|||||||
{
|
{
|
||||||
OCC_CATCH_SIGNALS
|
OCC_CATCH_SIGNALS
|
||||||
|
|
||||||
BRepMesh_FastDiscretFace aTool(GetAngle());
|
BRepMesh_FastDiscretFace aTool(GetAngle(), myInternalVerticesMode);
|
||||||
aTool.Perform(anAttribute);
|
aTool.Perform(anAttribute);
|
||||||
}
|
}
|
||||||
catch (Standard_Failure)
|
catch (Standard_Failure)
|
||||||
|
@ -58,14 +58,16 @@ class BRepMesh_FastDiscret : public Standard_Transient
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
Standard_EXPORT BRepMesh_FastDiscret(const Standard_Real defle,
|
Standard_EXPORT BRepMesh_FastDiscret(
|
||||||
const Standard_Real angle,
|
const Standard_Real defle,
|
||||||
const Bnd_Box& B,
|
const Standard_Real angle,
|
||||||
const Standard_Boolean withShare = Standard_True,
|
const Bnd_Box& B,
|
||||||
const Standard_Boolean inshape = Standard_False,
|
const Standard_Boolean withShare = Standard_True,
|
||||||
const Standard_Boolean relative = Standard_False,
|
const Standard_Boolean inshape = Standard_False,
|
||||||
const Standard_Boolean shapetrigu = Standard_False,
|
const Standard_Boolean relative = Standard_False,
|
||||||
const Standard_Boolean isInParallel = Standard_False);
|
const Standard_Boolean shapetrigu = Standard_False,
|
||||||
|
const Standard_Boolean isInParallel = Standard_False,
|
||||||
|
const Standard_Boolean isInternalVerticesMode = Standard_True);
|
||||||
|
|
||||||
//! if the boolean <relative> is True, the <br>
|
//! if the boolean <relative> is True, the <br>
|
||||||
//! deflection used for the polygonalisation of <br>
|
//! deflection used for the polygonalisation of <br>
|
||||||
@ -79,15 +81,17 @@ public:
|
|||||||
//! <br>
|
//! <br>
|
||||||
//! if <inshape> is True, the calculated <br>
|
//! if <inshape> is True, the calculated <br>
|
||||||
//! triangulation will be stored in the shape. <br>
|
//! triangulation will be stored in the shape. <br>
|
||||||
Standard_EXPORT BRepMesh_FastDiscret(const TopoDS_Shape& shape,
|
Standard_EXPORT BRepMesh_FastDiscret(
|
||||||
const Standard_Real defle,
|
const TopoDS_Shape& shape,
|
||||||
const Standard_Real angle,
|
const Standard_Real defle,
|
||||||
const Bnd_Box& B,
|
const Standard_Real angle,
|
||||||
const Standard_Boolean withShare = Standard_True,
|
const Bnd_Box& B,
|
||||||
const Standard_Boolean inshape = Standard_False,
|
const Standard_Boolean withShare = Standard_True,
|
||||||
const Standard_Boolean relative = Standard_False,
|
const Standard_Boolean inshape = Standard_False,
|
||||||
const Standard_Boolean shapetrigu = Standard_False,
|
const Standard_Boolean relative = Standard_False,
|
||||||
const Standard_Boolean isInParallel = 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.
|
//! Build triangulation on the whole shape.
|
||||||
Standard_EXPORT void Perform(const TopoDS_Shape& shape);
|
Standard_EXPORT void Perform(const TopoDS_Shape& shape);
|
||||||
@ -362,6 +366,7 @@ private:
|
|||||||
// Fast access to attributes of current face
|
// Fast access to attributes of current face
|
||||||
Handle(BRepMesh_FaceAttribute) myAttribute;
|
Handle(BRepMesh_FaceAttribute) myAttribute;
|
||||||
TopTools_IndexedDataMapOfShapeListOfShape mySharedFaces;
|
TopTools_IndexedDataMapOfShapeListOfShape mySharedFaces;
|
||||||
|
Standard_Boolean myInternalVerticesMode;
|
||||||
};
|
};
|
||||||
|
|
||||||
DEFINE_STANDARD_HANDLE(BRepMesh_FastDiscret, Standard_Transient)
|
DEFINE_STANDARD_HANDLE(BRepMesh_FastDiscret, Standard_Transient)
|
||||||
|
@ -141,10 +141,11 @@ namespace
|
|||||||
//function : BRepMesh_FastDiscretFace
|
//function : BRepMesh_FastDiscretFace
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
BRepMesh_FastDiscretFace::BRepMesh_FastDiscretFace
|
BRepMesh_FastDiscretFace::BRepMesh_FastDiscretFace(
|
||||||
(const Standard_Real theAngle)
|
const Standard_Real theAngle,
|
||||||
|
const Standard_Boolean isInternalVerticesMode)
|
||||||
: myAngle(theAngle),
|
: myAngle(theAngle),
|
||||||
myInternalVerticesMode(Standard_True)
|
myInternalVerticesMode(isInternalVerticesMode)
|
||||||
{
|
{
|
||||||
myAllocator = new NCollection_IncAllocator(
|
myAllocator = new NCollection_IncAllocator(
|
||||||
BRepMesh::MEMORY_BLOCK_SIZE_HUGE);
|
BRepMesh::MEMORY_BLOCK_SIZE_HUGE);
|
||||||
@ -1247,6 +1248,9 @@ void BRepMesh_FastDiscretFace::add(const TopoDS_Vertex& theVertex)
|
|||||||
OCC_CATCH_SIGNALS
|
OCC_CATCH_SIGNALS
|
||||||
|
|
||||||
gp_Pnt2d aPnt2d = BRep_Tool::Parameters(theVertex, myAttribute->Face());
|
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);
|
NCollection_Handle<FixedVExplorer> aFixedVExplorer = new FixedVExplorer(theVertex);
|
||||||
Standard_Integer aIndex = myAttribute->GetVertexIndex(aFixedVExplorer);
|
Standard_Integer aIndex = myAttribute->GetVertexIndex(aFixedVExplorer);
|
||||||
|
@ -50,8 +50,13 @@ class BRepMesh_FastDiscretFace : public Standard_Transient
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
//! Constructor.
|
||||||
|
//! @param theAngle deviation angle to be used for surface tessellation.
|
||||||
|
//! @param isInternalVerticesMode flag enabling/disabling internal
|
||||||
|
//! vertices mode.
|
||||||
Standard_EXPORT BRepMesh_FastDiscretFace(
|
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);
|
Standard_EXPORT void Perform(const Handle(BRepMesh_FaceAttribute)& theAttribute);
|
||||||
|
|
||||||
|
@ -73,7 +73,8 @@ IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_IncrementalMesh, BRepMesh_DiscretRoot)
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh()
|
BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh()
|
||||||
: myRelative (Standard_False),
|
: 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_Real theAngDeflection,
|
||||||
const Standard_Boolean isInParallel)
|
const Standard_Boolean isInParallel)
|
||||||
: myRelative (isRelative),
|
: myRelative (isRelative),
|
||||||
myInParallel(isInParallel)
|
myInParallel(isInParallel),
|
||||||
|
myInternalVerticesMode(Standard_True)
|
||||||
{
|
{
|
||||||
myDeflection = theLinDeflection;
|
myDeflection = theLinDeflection;
|
||||||
myAngle = theAngDeflection;
|
myAngle = theAngDeflection;
|
||||||
@ -143,7 +145,8 @@ void BRepMesh_IncrementalMesh::init()
|
|||||||
BRepMesh_ShapeTool::BoxMaxDimension(aBox, myMaxShapeSize);
|
BRepMesh_ShapeTool::BoxMaxDimension(aBox, myMaxShapeSize);
|
||||||
|
|
||||||
myMesh = new BRepMesh_FastDiscret(myDeflection, myAngle, aBox,
|
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);
|
myMesh->InitSharedFaces(myShape);
|
||||||
}
|
}
|
||||||
|
@ -103,6 +103,18 @@ public: //! @name accessing to parameters.
|
|||||||
return myInParallel;
|
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
|
public: //! @name plugin API
|
||||||
|
|
||||||
//! Plugin interface for the Mesh Factories.
|
//! Plugin interface for the Mesh Factories.
|
||||||
@ -193,6 +205,7 @@ protected:
|
|||||||
Standard_Real myMaxShapeSize;
|
Standard_Real myMaxShapeSize;
|
||||||
Standard_Integer myStatus;
|
Standard_Integer myStatus;
|
||||||
NCollection_Vector<TopoDS_Face> myFaces;
|
NCollection_Vector<TopoDS_Face> myFaces;
|
||||||
|
Standard_Boolean myInternalVerticesMode;
|
||||||
};
|
};
|
||||||
|
|
||||||
DEFINE_STANDARD_HANDLE(BRepMesh_IncrementalMesh,BRepMesh_DiscretRoot)
|
DEFINE_STANDARD_HANDLE(BRepMesh_IncrementalMesh,BRepMesh_DiscretRoot)
|
||||||
|
@ -130,6 +130,8 @@ options:\n\
|
|||||||
-a val angular deflection in deg (default ~28.64 deg = 0.5 rad)\n\
|
-a val angular deflection in deg (default ~28.64 deg = 0.5 rad)\n\
|
||||||
-relative notifies that relative deflection is used\n\
|
-relative notifies that relative deflection is used\n\
|
||||||
(switched off by default)\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";
|
-parallel enables parallel execution (switched off by default)\n";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -141,10 +143,11 @@ options:\n\
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
Standard_Real aLinDeflection = Max(Draw::Atof(argv[2]), Precision::Confusion());
|
Standard_Real aLinDeflection = Max(Draw::Atof(argv[2]), Precision::Confusion());
|
||||||
Standard_Real aAngDeflection = 0.5;
|
Standard_Real aAngDeflection = 0.5;
|
||||||
Standard_Boolean isRelative = Standard_False;
|
Standard_Boolean isRelative = Standard_False;
|
||||||
Standard_Boolean isInParallel = Standard_False;
|
Standard_Boolean isInParallel = Standard_False;
|
||||||
|
Standard_Boolean isIntVertices = Standard_True;
|
||||||
|
|
||||||
if (nbarg > 3)
|
if (nbarg > 3)
|
||||||
{
|
{
|
||||||
@ -160,6 +163,8 @@ options:\n\
|
|||||||
isRelative = Standard_True;
|
isRelative = Standard_True;
|
||||||
else if (aOpt == "-parallel")
|
else if (aOpt == "-parallel")
|
||||||
isInParallel = Standard_True;
|
isInParallel = Standard_True;
|
||||||
|
else if (aOpt == "-int_vert_off")
|
||||||
|
isIntVertices = Standard_False;
|
||||||
else if (i < nbarg)
|
else if (i < nbarg)
|
||||||
{
|
{
|
||||||
Standard_Real aVal = Draw::Atof(argv[i++]);
|
Standard_Real aVal = Draw::Atof(argv[i++]);
|
||||||
@ -174,8 +179,14 @@ options:\n\
|
|||||||
di << "Incremental Mesh, multi-threading "
|
di << "Incremental Mesh, multi-threading "
|
||||||
<< (isInParallel ? "ON" : "OFF") << "\n";
|
<< (isInParallel ? "ON" : "OFF") << "\n";
|
||||||
|
|
||||||
BRepMesh_IncrementalMesh aMesher(aShape, aLinDeflection, isRelative,
|
BRepMesh_IncrementalMesh aMesher;
|
||||||
aAngDeflection, isInParallel);
|
aMesher.SetShape (aShape);
|
||||||
|
aMesher.SetDeflection (aLinDeflection);
|
||||||
|
aMesher.SetRelative (isRelative);
|
||||||
|
aMesher.SetAngle (aAngDeflection);
|
||||||
|
aMesher.SetParallel (isInParallel);
|
||||||
|
aMesher.SetInternalVerticesMode(isIntVertices);
|
||||||
|
aMesher.Perform();
|
||||||
|
|
||||||
di << "Meshing statuses: ";
|
di << "Meshing statuses: ";
|
||||||
Standard_Integer statusFlags = aMesher.GetStatusFlags();
|
Standard_Integer statusFlags = aMesher.GetStatusFlags();
|
||||||
|
41
tests/bugs/mesh/bug21593
Normal file
41
tests/bugs/mesh/bug21593
Normal 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)"
|
||||||
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user