1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0032060: Modeling Algorithms - HLR presentation does not display expected edges

This commit is contained in:
nds
2021-01-22 17:49:36 +03:00
parent 87e7c67105
commit b032a91b2b

View File

@@ -442,6 +442,14 @@ Bnd_Box Graphic3d_CView::MinMaxValues (const Standard_Boolean theToIncludeAuxili
theToIncludeAuxiliary);
aResult.Add (aBox);
}
// force HLRValidation to False on all structures calculated in the view
for (Graphic3d_SequenceOfStructure::Iterator aStructIter (myStructsComputed); aStructIter.More(); aStructIter.Next())
{
Bnd_Box aBox = aStructIter.Value()->MinMaxValues();
aResult.Add (aBox);
}
return aResult;
}