1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50:49 +03:00

0030780: [Regression to 7.3.0] BRepMesh fails triangulating one face of the shape

Added new parameter KeepSmallEdges to IMeshTools_Parameters allowing to compute min size for each edge locally, depending on the length of particular edge.
Parameter -smalledges now available for incmesh command.
This commit is contained in:
oan
2019-06-24 19:03:45 +03:00
committed by apn
parent 62810a3c51
commit 3c1b70842d
4 changed files with 43 additions and 10 deletions

View File

@@ -33,7 +33,8 @@ struct IMeshTools_Parameters {
Relative (Standard_False),
InternalVerticesMode (Standard_True),
ControlSurfaceDeflection (Standard_True),
CleanModel(Standard_True)
CleanModel (Standard_True),
AdjustMinSize (Standard_False)
{
}
@@ -78,6 +79,10 @@ struct IMeshTools_Parameters {
//! Cleans temporary data model when algorithm is finished.
Standard_Boolean CleanModel;
//! Enables/disables local adjustment of min size depending on edge size.
//! Disabled by default.
Standard_Boolean AdjustMinSize;
};
#endif