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

0025088: Revert or change API of BRepMesh_IncrementalMesh to prevent possible errors occurred due to changed order of parameters

Revert old constructor
This commit is contained in:
oan
2014-07-17 14:45:16 +04:00
committed by bugmaster
parent 846c92e0f5
commit 14434f3e6c
9 changed files with 19 additions and 19 deletions

View File

@@ -80,7 +80,7 @@ void StdSelect_BRepSelectionTool
if( isAutoTriangulation && !BRepTools::Triangulation (theShape, Precision::Infinite()) )
{
BRepMesh_IncrementalMesh aMesher(theShape, theDeflection, theDeviationAngle, Standard_False);
BRepMesh_IncrementalMesh aMesher(theShape, theDeflection, Standard_False, theDeviationAngle);
}
Handle(StdSelect_BRepOwner) aBrepOwner;