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

0027136: Visualization - skip void bounding box within SelectMgr_SelectableObjectTrsfPersSet::BVH()

This commit is contained in:
kgv 2016-02-05 13:12:36 +03:00 committed by bugmaster
parent 714c3bfccc
commit 4f7e90e0db

View File

@ -137,8 +137,11 @@ const NCollection_Handle<BVH_Tree<Standard_Real, 3> >&
if (anObject->TransformPersistence().Flags && !(anObject->TransformPersistence().Flags & Graphic3d_TMF_2d))
{
anObject->BoundingBox (aBoundingBox);
if (!aBoundingBox.IsVoid())
{
anObject->TransformPersistence().Apply (theProjectionMatrix, theWorldViewMatrix, 0, 0, aBoundingBox);
}
}
if (aBoundingBox.IsVoid())
{