mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
OCC22521 triarea and checktopo DRAW commands didn't work in the right way
This commit is contained in:
parent
824694116a
commit
e1bcbb5283
@ -107,9 +107,7 @@ void MeshTest_CheckTopology::Perform ()
|
||||
TopLoc_Location aLoc;
|
||||
Handle(Poly_Triangulation) aT = BRep_Tool::Triangulation(aFace, aLoc);
|
||||
if (aT.IsNull()) {
|
||||
#ifdef DEB
|
||||
cout<<"no Triangulation of face "<<iF<<endl;
|
||||
#endif
|
||||
cout<< "face "<<iF<<" has no triangulation"<<endl;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@ static Standard_Integer mpgetfunctionname (Draw_Interpretor& , Standard_Integer
|
||||
static Standard_Integer mperror (Draw_Interpretor& , Standard_Integer , const char** );
|
||||
static Standard_Integer mpincmesh (Draw_Interpretor& , Standard_Integer , const char** );
|
||||
static Standard_Integer triarea (Draw_Interpretor& , Standard_Integer , const char** );
|
||||
static Standard_Integer checktopo (Draw_Interpretor& , Standard_Integer , const char** );
|
||||
static Standard_Integer tricheck (Draw_Interpretor& , Standard_Integer , const char** );
|
||||
|
||||
//=======================================================================
|
||||
//function : PluginCommands
|
||||
@ -60,7 +60,7 @@ void MeshTest::PluginCommands(Draw_Interpretor& theCommands)
|
||||
theCommands.Add("mperror" , "use mperror" , __FILE__, mperror , g);
|
||||
theCommands.Add("mpincmesh" , "use mpincmesh" , __FILE__, mpincmesh , g);
|
||||
theCommands.Add("triarea","shape [eps] (computes triangles and surface area)",__FILE__, triarea, g);
|
||||
theCommands.Add("checktopo", "shape (checks mesh topology)", __FILE__, checktopo, g);
|
||||
theCommands.Add("tricheck", "shape (checks triangulation of shape)", __FILE__, tricheck, g);
|
||||
|
||||
}
|
||||
|
||||
@ -274,7 +274,7 @@ static Standard_Integer triarea (Draw_Interpretor& di, int n, const char ** a)
|
||||
Handle(Poly_Triangulation) aPoly = BRep_Tool::Triangulation(aFace,aLoc);
|
||||
if (aPoly.IsNull()) {
|
||||
cout << "face "<<i<<" has no triangulation"<<endl;
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
const Poly_Array1OfTriangle& triangles = aPoly->Triangles();
|
||||
const TColgp_Array1OfPnt& nodes = aPoly->Nodes();
|
||||
@ -307,7 +307,7 @@ static Standard_Integer triarea (Draw_Interpretor& di, int n, const char ** a)
|
||||
}
|
||||
|
||||
//#######################################################################
|
||||
static Standard_Integer checktopo (Draw_Interpretor& di, int n, const char ** a)
|
||||
static Standard_Integer tricheck (Draw_Interpretor& di, int n, const char ** a)
|
||||
{
|
||||
if (n < 2) return 1;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user