mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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).
35 lines
701 B
Plaintext
35 lines
701 B
Plaintext
puts "============"
|
|
puts "OCC28085: Incorrect result of CUT operation"
|
|
puts "============"
|
|
puts ""
|
|
|
|
# enable FPE signals
|
|
dsetsignal 1
|
|
|
|
restore [locate_data_file bug28085_object.brep] b1
|
|
restore [locate_data_file bug28085_tool.brep] b2
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects b1
|
|
baddtools b2
|
|
bfillds
|
|
|
|
bbop rs 4
|
|
|
|
checkprops rs -l 456.152
|
|
checkmaxtol rs -ref 2.3840014382159325e-005
|
|
checksection rs -r 8
|
|
|
|
bbop result 2
|
|
|
|
checkprops result -s 6168.4 -v 10554.5
|
|
checknbshapes result -face 22 -shell 1 -solid 1
|
|
checkshape result
|
|
|
|
if {[regexp "Faulties" [bopargcheck result]]} {
|
|
puts "Error: bopargcheck has found some faulties in result"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|