diff --git a/src/BRepMesh/BRepMesh_IncrementalMesh.cdl b/src/BRepMesh/BRepMesh_IncrementalMesh.cdl index e9a60e5fdc..cf4c5e1cc7 100755 --- a/src/BRepMesh/BRepMesh_IncrementalMesh.cdl +++ b/src/BRepMesh/BRepMesh_IncrementalMesh.cdl @@ -21,7 +21,8 @@ uses MapOfShape from TopTools, IndexedDataMapOfShapeListOfShape from TopTools, DataMapOfShapeReal from TopTools, - FastDiscret from BRepMesh + FastDiscret from BRepMesh, + Status from BRepMesh is Create @@ -72,6 +73,9 @@ is -- correctly, the triangulation of this face is -- built. is static private; + + EchoStatus(me) + is static; fields diff --git a/src/BRepMesh/BRepMesh_IncrementalMesh.cxx b/src/BRepMesh/BRepMesh_IncrementalMesh.cxx index dd3763e091..ba8c665f1f 100755 --- a/src/BRepMesh/BRepMesh_IncrementalMesh.cxx +++ b/src/BRepMesh/BRepMesh_IncrementalMesh.cxx @@ -140,26 +140,53 @@ void BRepMesh_IncrementalMesh::Perform() Init(); // BRepBndLib::Add(myShape, aBox); - if (aBox.IsVoid() == Standard_False) - { - myBox = aBox; + myBox = aBox; // - if (!myMesh.IsNull()) { - myMesh.Nullify(); - } - // - myMesh = new BRepMesh_FastDiscret(myDeflection, - myAngle, - aBox, - Standard_True, - Standard_True, - myRelative, - Standard_True); - // - Update(myShape); + if (!myMesh.IsNull()) { + myMesh.Nullify(); } + // + myMesh = new BRepMesh_FastDiscret(myDeflection, + myAngle, + aBox, + Standard_True, + Standard_True, + myRelative, + Standard_True); + // + Update(myShape); +#ifdef DEB + EchoStatus(); +#endif } +//======================================================================= +//function : EchoStatus +//purpose : +//======================================================================= +void BRepMesh_IncrementalMesh::EchoStatus() const +{ + cout << "BRepMesh_FastDiscret::Meshing status: "; + switch(myMesh->CurrentFaceStatus()) + { + case BRepMesh_NoError: + cout << "NoError" << endl; + break; + case BRepMesh_OpenWire: + cout << "OpenWire" << endl; + break; + case BRepMesh_SelfIntersectingWire: + cout << "SelfIntersectingWire" << endl; + break; + case BRepMesh_Failure: + cout << "Failure" << endl; + break; + case BRepMesh_ReMesh: + cout << "ReMesh" << endl; + break; + default: cout << "UnsupportedStatus" << endl; + } +} //======================================================================= //function : Update(shape)