mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
If 2D-curves are requested in intersection result but they cannot be created (by some reason) then the full set of curves (3D and two 2D) is rejected from the intersection result.
18 lines
427 B
Plaintext
18 lines
427 B
Plaintext
puts "========"
|
|
puts "0029673: Ex-ception while Face-Face intersection"
|
|
puts "========"
|
|
puts ""
|
|
|
|
restore [locate_data_file bug29673_f1.brep] f1
|
|
restore [locate_data_file bug29673_f2.brep] f2
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} [bopcurves f1 f2 -2d] full Toler NbCurv
|
|
|
|
if {$Toler > 1.0e-7} {
|
|
puts "Error: too big tolerance"
|
|
}
|
|
|
|
if {$NbCurv != 1} {
|
|
puts "Error: Please check NbCurves for intersector"
|
|
}
|