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:
parent
714c3bfccc
commit
4f7e90e0db
@ -137,7 +137,10 @@ const NCollection_Handle<BVH_Tree<Standard_Real, 3> >&
|
|||||||
if (anObject->TransformPersistence().Flags && !(anObject->TransformPersistence().Flags & Graphic3d_TMF_2d))
|
if (anObject->TransformPersistence().Flags && !(anObject->TransformPersistence().Flags & Graphic3d_TMF_2d))
|
||||||
{
|
{
|
||||||
anObject->BoundingBox (aBoundingBox);
|
anObject->BoundingBox (aBoundingBox);
|
||||||
anObject->TransformPersistence().Apply (theProjectionMatrix, theWorldViewMatrix, 0, 0, aBoundingBox);
|
if (!aBoundingBox.IsVoid())
|
||||||
|
{
|
||||||
|
anObject->TransformPersistence().Apply (theProjectionMatrix, theWorldViewMatrix, 0, 0, aBoundingBox);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (aBoundingBox.IsVoid())
|
if (aBoundingBox.IsVoid())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user