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

0031251: Add a new meshing parameter to enforce face linear deflection

Parameter has been renamed to ForceFaceDeflection. Added test case.

New parameter -force_face_def has been added to incmesh command.
This commit is contained in:
razmyslovich
2019-12-17 21:17:17 +03:00
committed by bugmaster
parent bdd09cfaf4
commit 0da2ecac41
5 changed files with 53 additions and 11 deletions

View File

@@ -34,7 +34,8 @@ struct IMeshTools_Parameters {
InternalVerticesMode (Standard_True),
ControlSurfaceDeflection (Standard_True),
CleanModel (Standard_True),
AdjustMinSize (Standard_False)
AdjustMinSize (Standard_False),
ForceFaceDeflection (Standard_False)
{
}
@@ -83,6 +84,10 @@ struct IMeshTools_Parameters {
//! Enables/disables local adjustment of min size depending on edge size.
//! Disabled by default.
Standard_Boolean AdjustMinSize;
//! Enables/disables usage of shape tolerances for computing face deflection.
//! Disabled by default.
Standard_Boolean ForceFaceDeflection;
};
#endif