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

0032747: Modeling Algorithms - Exact HLR algorithm gives wrong result

Modify the method IntWalk_IWalking::TestArretCadre: correct the value of scalar product of two vectors according to the tolerances in U and V.
This commit is contained in:
jgv 2021-12-24 07:12:49 +03:00 committed by smoskvin
parent 16a263dc17
commit e2a956a633
7 changed files with 55 additions and 19 deletions

View File

@ -22,6 +22,14 @@
#define No_Standard_OutOfRange
#endif
static void CutVectorByTolerances (gp_Vec2d& theVector,
const math_Vector& theTolerance)
{
if (Abs(theVector.X()) < theTolerance(1))
theVector.SetX (0.);
if (Abs(theVector.Y()) < theTolerance(2))
theVector.SetY (0.);
}
// _______________________________________________
//
@ -771,8 +779,13 @@ void IntWalk_IWalking::TestArretCadre
Line->Value(j).ParametersOnS1(Uc,Vc);
}
Scal = (Up-wd1[i].ustart) * (Uc-wd1[i].ustart) +
(Vp-wd1[i].vstart) * (Vc-wd1[i].vstart);
gp_Vec2d aVec1 (Up-wd1[i].ustart, Vp-wd1[i].vstart),
aVec2 (Uc-wd1[i].ustart, Vc-wd1[i].vstart);
CutVectorByTolerances (aVec1, tolerance);
CutVectorByTolerances (aVec2, tolerance);
Scal = aVec1 * aVec2;
// if a stop point is found: stop the line on this point.
if (Scal < 0) {
Line->Cut(j); nbp= Line->NbPoints();
@ -791,8 +804,14 @@ void IntWalk_IWalking::TestArretCadre
}
else if (nbMultiplicities[i] > 0) {
for (Standard_Integer k = N+1; k <= N + nbMultiplicities[i]; k++) {
Scal = (Up-Umult(k)) * (Uc-Umult(k)) +
(Vp-Vmult(k)) * (Vc-Vmult(k));
aVec1.SetCoord (Up-Umult(k), Vp-Vmult(k)),
aVec2.SetCoord (Uc-Umult(k), Vc-Vmult(k));
CutVectorByTolerances (aVec1, tolerance);
CutVectorByTolerances (aVec2, tolerance);
Scal = aVec1 * aVec2;
if (Scal < 0) {
Line->Cut(j); nbp= Line->NbPoints();
Irang=i;
@ -847,11 +866,13 @@ void IntWalk_IWalking::TestArretCadre
// now the last point of the line and the last calculated point are compated.
// there will be no need to "Cut"
Scal = (Up-wd1[i].ustart) * (UV(1)-wd1[i].ustart) +
// (Vp-wd1[i].vstart) * (UV(2)-wd1[i].vstart);
// modified by NIZHNY-MKK Fri Oct 27 12:29:41 2000
(Vp-wd1[i].vstart) * (UV(2)-wd1[i].vstart);
gp_Vec2d aVec1 (Up-wd1[i].ustart, Vp-wd1[i].vstart),
aVec2 (UV(1)-wd1[i].ustart, UV(2)-wd1[i].vstart);
CutVectorByTolerances (aVec1, tolerance);
CutVectorByTolerances (aVec2, tolerance);
Scal = aVec1 * aVec2;
if (Scal < 0) {
Irang = i;
UV(1) = wd1[Irang].ustart;
@ -867,8 +888,14 @@ void IntWalk_IWalking::TestArretCadre
}
else if (nbMultiplicities[i] > 0) {
for (Standard_Integer j = N+1; j <= N+nbMultiplicities[i]; j++) {
Scal = (Up-Umult(j)) * (UV(1)-Umult(j)) +
(Vp-Vmult(j)) * (UV(2)-Vmult(j));
aVec1.SetCoord (Up-Umult(j), Vp-Vmult(j));
aVec2.SetCoord (UV(1)-Umult(j), UV(2)-Vmult(j));
CutVectorByTolerances (aVec1, tolerance);
CutVectorByTolerances (aVec2, tolerance);
Scal = aVec1 * aVec2;
if (Scal < 0) {
Irang=i;
UV(1) = wd1[Irang].ustart;

View File

@ -1,5 +1,3 @@
puts "TODO OCC30286 ALL: Error : The length of result shape is 9589.21, expected 9547.11"
set viewname "vright"
set length 9547.11

View File

@ -1,6 +1,3 @@
puts "TODO OCC30286 Windows: Error : The length of result shape is 2416.66, expected 2418.08"
puts "TODO OCC30286 Linux: Error : The length of result shape is 2414.48, expected 2418.08"
set viewname "vright"
set length 2418.08

View File

@ -1,7 +1,5 @@
puts "TODO OCC30286 Linux: Error : The length of result shape is 3249.9, expected 3234.6"
set viewname "vright"
set length 3234.6
set length 3237.63
testreadstep [locate_data_file bug27341_570-DWLNL-40-08-L_131LANG_16VERSATZ_DIN.stp] a
COMPUTE_HLR $viewname $algotype

View File

@ -0,0 +1,10 @@
puts "================================================"
puts "OCC32747: Exact HLR algorithm gives wrong result"
puts "================================================"
puts ""
set viewname "vfront"
set length 34.3597
restore [locate_data_file bug32747.brep] a
COMPUTE_HLR $viewname $algotype

6
tests/hlr/exact_hlr/end Normal file
View File

@ -0,0 +1,6 @@
checkprops result -l ${length}
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
# to end a test script
puts "TEST COMPLETED"