mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
OCC22139 Statuses of BRepMesh
This commit is contained in:
parent
3086e0850d
commit
8e3006e453
@ -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
|
||||
@ -73,6 +74,9 @@ is
|
||||
-- built.
|
||||
is static private;
|
||||
|
||||
EchoStatus(me)
|
||||
is static;
|
||||
|
||||
|
||||
fields
|
||||
myRelative : Boolean from Standard is protected;
|
||||
|
@ -140,8 +140,6 @@ void BRepMesh_IncrementalMesh::Perform()
|
||||
Init();
|
||||
//
|
||||
BRepBndLib::Add(myShape, aBox);
|
||||
if (aBox.IsVoid() == Standard_False)
|
||||
{
|
||||
myBox = aBox;
|
||||
//
|
||||
if (!myMesh.IsNull()) {
|
||||
@ -157,9 +155,38 @@ void BRepMesh_IncrementalMesh::Perform()
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user