mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
This problem occurs because of obtaining 2 ALines which share same vertex on the seam edge. There should be 2 different vertices with same(or almost the same) 3d parameters, but with different UV parameters because of periodic surface. Current fix allows to avoid the same vertices on seam edge and also checks the next vertex. Added consideration of predicted next point to avoid skipping tha point which is not on seam edge. Added test case for #33702
32 lines
770 B
Plaintext
32 lines
770 B
Plaintext
puts "========"
|
|
puts "0029807: Impossible to cut cone from prism"
|
|
puts "========"
|
|
puts ""
|
|
|
|
restore [locate_data_file bug29807-obj.brep] b1
|
|
restore [locate_data_file bug29807-tool.brep] b2
|
|
|
|
trotate b2 +23.85857157145715500000 +12.00000000000000000000 +5.50000000000000000000 7 -7.14142842854285 0 5
|
|
removeloc b2 b2
|
|
|
|
explode b1 f
|
|
explode b2 f
|
|
smallview
|
|
don b1_5 b2_2
|
|
fit
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} [bopcurves b1_5 b2_2 -2d] full Toler NbCurv
|
|
|
|
if { ${Toler} > 0.002} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
if {$NbCurv != 2} {
|
|
puts "Error: Please check NbCurves for intersector"
|
|
}
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_3d.png
|
|
smallview -2D-
|
|
2dfit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_2d.png
|