From b44bf0f8fe992510e38324f76729035ec1ecfc44 Mon Sep 17 00:00:00 2001 From: kgv Date: Wed, 1 May 2019 12:24:35 +0300 Subject: [PATCH] 0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation-persistent objects SelectMgr_ViewerSelector::updatePoint3d() - added missing Abs() for computed tolerance and added check to not attempt transforming undefined 3D point. --- src/SelectMgr/SelectMgr_ViewerSelector.cxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/SelectMgr/SelectMgr_ViewerSelector.cxx b/src/SelectMgr/SelectMgr_ViewerSelector.cxx index 0fb6c8666e..0099563c7f 100644 --- a/src/SelectMgr/SelectMgr_ViewerSelector.cxx +++ b/src/SelectMgr/SelectMgr_ViewerSelector.cxx @@ -81,6 +81,11 @@ void SelectMgr_ViewerSelector::updatePoint3d (SelectMgr_SortCriterion& theCriter { theCriterion.Point = thePickResult.PickedPoint(); } + else if (!thePickResult.IsValid()) + { + theCriterion.Point = thePickResult.PickedPoint(); + return; + } else { theCriterion.Point = theMgr.DetectedPoint (theCriterion.Depth); @@ -106,7 +111,7 @@ void SelectMgr_ViewerSelector::updatePoint3d (SelectMgr_SortCriterion& theCriter } else { - const Standard_Real aDistFromEye = (theCriterion.Point.XYZ() - myCameraEye.XYZ()).Dot (myCameraDir.XYZ()); + const Standard_Real aDistFromEye = Abs ((theCriterion.Point.XYZ() - myCameraEye.XYZ()).Dot (myCameraDir.XYZ())); theCriterion.Tolerance = aDistFromEye * myCameraScale * theEntity->SensitivityFactor(); } }