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

023263: Incorrect results displaying of QA command BUC60811 using "printf"

Modified command BUC60811
This commit is contained in:
apn 2012-07-12 18:00:17 +04:00
parent 074028c646
commit c281a4a4a1

View File

@ -1237,11 +1237,13 @@ static Standard_Integer BUC60811(Draw_Interpretor& di, Standard_Integer argc, co
Ex.Init(FP, TopAbs_VERTEX);
TopoDS_Vertex v1 = TopoDS::Vertex(Ex.Current());
fillet.AddFillet(v1, 20);
printf("\nError is %d ", fillet.Status());
di << "\n" << "Error is " << fillet.Status() << "\n";
// printf("\nError is %d ", fillet.Status());
Ex.Next();
TopoDS_Vertex V2 = TopoDS::Vertex(Ex.Current());
fillet.AddFillet(V2, 20);
printf("\nError is %d ", fillet.Status());
di << "\n" << "Error is " << fillet.Status() << "\n";
// printf("\nError is %d ", fillet.Status());
fillet.Build();
FP1 = fillet.Shape();
ais2 = new AIS_Shape( FP1 );