1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0026317: Visualization - AIS_LengthDimension::CheckPlane() is incorrect

This commit is contained in:
isk 2015-08-20 08:46:25 +03:00 committed by ski
parent 0824e32eb1
commit b080448780
2 changed files with 26 additions and 2 deletions

View File

@ -188,8 +188,11 @@ void AIS_LengthDimension::SetMeasuredShapes (const TopoDS_Shape& theFirstShape,
//=======================================================================
Standard_Boolean AIS_LengthDimension::CheckPlane (const gp_Pln& thePlane) const
{
if (!thePlane.Contains (myFirstPoint, Precision::Confusion()) &&
!thePlane.Contains (mySecondPoint, Precision::Confusion()))
Standard_Boolean anIsFaultyNormal =
thePlane.Axis().Direction().IsParallel(gce_MakeDir (myFirstPoint, mySecondPoint), Precision::Angular());
if ((!thePlane.Contains (myFirstPoint, Precision::Confusion()) && !thePlane.Contains (mySecondPoint, Precision::Confusion()))
|| anIsFaultyNormal)
{
return Standard_False;
}

21
tests/bugs/vis/bug26317 Normal file
View File

@ -0,0 +1,21 @@
puts "============"
puts "CR26317"
puts "============"
puts ""
##########################################################################################
puts "Visualization, AIS_LengthDimension::CheckPlane is incorrect"
##########################################################################################
pload VISUALIZATION MODELING
box b 100 200 300
vinit View1
vclear
vaxo
explode b F
vdisplay b_1 b_2
vdimension len -length -shapes b_1 b_2 -plane zox
vfit
vdump ${imagedir}/${casename}.png