mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Before the fix, small arc of circle returned as intersection result. It was connected with the fact that the circle always was limited in 0 and 2*PI points. Currently the bounds of the circle (retrieved as an intersection curve) are computed from the real domain of the arguments (there is not a snap to the fixed 0 and 2*PI points).
34 lines
737 B
Plaintext
34 lines
737 B
Plaintext
puts "============"
|
|
puts "OCC28085: Incorrect result of CUT operation"
|
|
puts "============"
|
|
puts ""
|
|
|
|
foreach a [directory c_*] {unset $a}
|
|
|
|
# enable FPE signals
|
|
dsetsignal 1
|
|
|
|
restore [locate_data_file bug28883_Prism.brep] b1
|
|
restore [locate_data_file bug28883_LES_2d_shell.brep] b2
|
|
|
|
explode b1 f
|
|
explode b2 f
|
|
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} [bopcurves b1_74 b2_13 -2d] full Toler NbCurv
|
|
|
|
checkreal Tolerance $Toler 0.0 1.0e-7 0.0
|
|
|
|
if {$NbCurv != 1} {
|
|
puts "Error: Please check NbCurves for intersector"
|
|
} else {
|
|
puts "OK: good number of curves!"
|
|
checklength c_1 -l 0.036019405388914391 -eps 1.0e-3
|
|
}
|
|
|
|
don c_*
|
|
smallview; fit;
|
|
disp b1_74 b2_13
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|