mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
puts "=========="
|
|
puts "OCC25697"
|
|
puts "=========="
|
|
puts ""
|
|
########################################################################################
|
|
# Regression : Section obtained after command "bsection" in Test Harness is incorrect.
|
|
########################################################################################
|
|
|
|
restore [locate_data_file bug25697_shell_for_seam.brep] b1
|
|
restore [locate_data_file bug25697_prism.brep] b2
|
|
explode b1 f
|
|
copy b1_1 b1
|
|
explode b2 f
|
|
copy b2_1 b2
|
|
|
|
#################################
|
|
set log [bopcurves b1 b2 -2d1]
|
|
#################################
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log} full Toler NbCurv
|
|
|
|
set MaxTol 1.e-7
|
|
set GoodNbCurv 3
|
|
|
|
if { ${Toler} > ${MaxTol} } {
|
|
puts "Error: Tolerance is too big!"
|
|
}
|
|
|
|
if { ${NbCurv} != ${GoodNbCurv} } {
|
|
puts "Error: Curve Number is bad!"
|
|
}
|
|
|
|
#---------------
|
|
mksurface s1 b1
|
|
mksurface s2 b2
|
|
|
|
for {set i 1} {$i <= ${NbCurv}} {incr i} {
|
|
bounds c_$i u1 u2
|
|
dump u1 u2
|
|
|
|
xdistcs c_$i s1 u1 u2 10 1e-7
|
|
xdistcs c_$i s2 u1 u2 10 1e-7
|
|
}
|
|
|
|
smallview
|
|
fit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|