mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. New testgrid "lowalgos/intss" has been created. It will contain all test cases on geometrical intersection of two surfaces ("intersect" DRAW-command) and two faces ("bopcurves" DRAW-command). 2. New test case for the issue #28493 has been created because the problem is not reproduced on MASTER. 3. Test case (lowalgos/intss/bug24472) for the issue #29501 has been modified in order to check loops of the resulting intersection curves.
67 lines
1.4 KiB
Plaintext
67 lines
1.4 KiB
Plaintext
puts "============"
|
|
puts "OCC27431"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## [Regression to 6.9.1] Huge tolerance obtained during intersection of cylinder and sphere
|
|
###############################
|
|
|
|
pload ALL
|
|
|
|
set GoodNbCurv 4
|
|
|
|
restore [locate_data_file OCC13116_sh1.brep] b1
|
|
restore [locate_data_file OCC13116_sh2.brep] b2
|
|
|
|
explode b1 f
|
|
explode b2 f
|
|
|
|
set log1 [bopcurves b1_3 b2_1 -2d]
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log1} full Toler NbCurv
|
|
|
|
if { ${Toler} > 0.0005} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
smallview
|
|
don b1_3 b2_1 c_*
|
|
fit
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_3d_1.png
|
|
|
|
v2d
|
|
don c2d*
|
|
2dfit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_2d_1.png
|
|
|
|
if {${NbCurv} != ${GoodNbCurv}} {
|
|
puts "Error: Number of curves is bad!"
|
|
}
|
|
|
|
# increasing tolerance values of the faces on Precision::Confusion()
|
|
# dramatically increased (before fixing) the tolerance of
|
|
# the produced section curves
|
|
|
|
settolerance b1_3 2.34623727264857e-007
|
|
settolerance b2_1 2.e-7
|
|
|
|
set log2 [bopcurves b1_3 b2_1 -2d]
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log2} full Toler NbCurv
|
|
|
|
if { ${Toler} > 0.0005} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
smallview
|
|
don b1_3 b2_1 c_*
|
|
fit
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_3d_2.png
|
|
|
|
v2d
|
|
don c2d*
|
|
2dfit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_2d_2.png
|