1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0032388: Visualization - provide ray-picking interface with zero tolerance for rectangular frustum

This commit is contained in:
osa
2021-05-25 17:57:48 +03:00
committed by bugmaster
parent 807340d924
commit 0038de11f4
7 changed files with 63 additions and 8 deletions

View File

@@ -50,7 +50,7 @@ public:
//! Allows to manage sensitivity of a particular sensitive entity
void SetSensitivityFactor (const Standard_Integer theNewSens)
{
Standard_ASSERT_RAISE (theNewSens > 0, "Error! Selection sensitivity have positive value.");
Standard_ASSERT_RAISE (theNewSens >= 0, "Error! Selection sensitivity should not be negative value.");
mySFactor = theNewSens;
}