mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0031602: [Regression vs 7.0.0] Modeling Algorithms - Invalid result of boolean operation
IntPatch/IntPatch_ImpImpIntersection_4.gxx : adding tolerance in comparison surface range and surface period bug31602: test case added
This commit is contained in:
parent
5d904c3454
commit
dccf867561
@ -1870,7 +1870,7 @@ static Standard_Boolean AddPointIntoWL( const IntSurf_Quadric& theQuad1,
|
||||
return Standard_False;
|
||||
|
||||
if ((theLine->NbPoints() > 0) &&
|
||||
((theUlSurf1 - theUfSurf1) >= thePeriodOfSurf1) &&
|
||||
((theUlSurf1 - theUfSurf1) >= (thePeriodOfSurf1 - theTol2D)) &&
|
||||
(((aU1par + thePeriodOfSurf1 - theUlSurf1) <= theTol2D) ||
|
||||
((aU1par - thePeriodOfSurf1 - theUfSurf1) >= theTol2D)))
|
||||
{
|
||||
|
33
tests/lowalgos/intss/bug31602
Normal file
33
tests/lowalgos/intss/bug31602
Normal file
@ -0,0 +1,33 @@
|
||||
puts "================"
|
||||
puts "OCC31602"
|
||||
puts "================"
|
||||
puts ""
|
||||
#######################################################################
|
||||
# 0031602: [Regression vs 7.0.0] Modeling Algorithms - Invalid result of boolean operation
|
||||
#######################################################################
|
||||
|
||||
set MaxTol 2.5e-6
|
||||
set GoodNbCurv 1
|
||||
|
||||
restore [locate_data_file bug31602.brep] f
|
||||
explode f f
|
||||
|
||||
set log [bopcurves f_1 f_2 -2d]
|
||||
|
||||
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log} full Toler NbCurv
|
||||
|
||||
if {${Toler} > ${MaxTol}} {
|
||||
puts "Error: Tolerance is too big!"
|
||||
}
|
||||
|
||||
if {${NbCurv} != ${GoodNbCurv}} {
|
||||
puts "Error: Curve Number is bad!"
|
||||
}
|
||||
checklength c_1 -l 1340.6982492258749
|
||||
checklength c2d1_1 -l 407.78567590999006
|
||||
checklength c2d2_1 -l 897.8658894846285
|
||||
|
||||
smallview
|
||||
donly f* c_*
|
||||
fit
|
||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
Loading…
x
Reference in New Issue
Block a user