1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

OCC22521 triarea and checktopo DRAW commands didn't work in the right way

This commit is contained in:
OAN 2011-05-30 14:49:40 +00:00 committed by bugmaster
parent 824694116a
commit e1bcbb5283
2 changed files with 31 additions and 33 deletions

View File

@ -107,9 +107,7 @@ void MeshTest_CheckTopology::Perform ()
TopLoc_Location aLoc; TopLoc_Location aLoc;
Handle(Poly_Triangulation) aT = BRep_Tool::Triangulation(aFace, aLoc); Handle(Poly_Triangulation) aT = BRep_Tool::Triangulation(aFace, aLoc);
if (aT.IsNull()) { if (aT.IsNull()) {
#ifdef DEB cout<< "face "<<iF<<" has no triangulation"<<endl;
cout<<"no Triangulation of face "<<iF<<endl;
#endif
continue; continue;
} }

View File

@ -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 mperror (Draw_Interpretor& , Standard_Integer , const char** );
static Standard_Integer mpincmesh (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 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 //function : PluginCommands
@ -60,7 +60,7 @@ void MeshTest::PluginCommands(Draw_Interpretor& theCommands)
theCommands.Add("mperror" , "use mperror" , __FILE__, mperror , g); theCommands.Add("mperror" , "use mperror" , __FILE__, mperror , g);
theCommands.Add("mpincmesh" , "use mpincmesh" , __FILE__, mpincmesh , g); theCommands.Add("mpincmesh" , "use mpincmesh" , __FILE__, mpincmesh , g);
theCommands.Add("triarea","shape [eps] (computes triangles and surface area)",__FILE__, triarea, 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); Handle(Poly_Triangulation) aPoly = BRep_Tool::Triangulation(aFace,aLoc);
if (aPoly.IsNull()) { if (aPoly.IsNull()) {
cout << "face "<<i<<" has no triangulation"<<endl; cout << "face "<<i<<" has no triangulation"<<endl;
break; continue;
} }
const Poly_Array1OfTriangle& triangles = aPoly->Triangles(); const Poly_Array1OfTriangle& triangles = aPoly->Triangles();
const TColgp_Array1OfPnt& nodes = aPoly->Nodes(); 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; if (n < 2) return 1;