1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_7/bug30154_2
emv 60b1a085c7 0030154: [REGRESSION] Modeling Algorithms - Boolean Operation on planar geometry hangs inside BRepLib::FindValidRange()
Do not allow the precision with which the valid range is found to be less than the epsilon of the max parameter of the edge's range.
Test cases for the issue.
2018-09-28 11:07:35 +03:00

23 lines
651 B
Plaintext

puts "========"
puts "0030154: Modeling Algorithms - Boolean Operation on planar geometry hangs inside BRepLib::FindValidRange()"
puts "========"
puts ""
set toler 3.e-7
box b -94190864 -46229000 -17178478.4 519231048 93653000 120025348.8
foreach e [explode b e] {
mkcurve c $e
regexp {Parameters : ([-0-9.+eE]*) ([-0-9.+eE]*)} [dump c] full t1 t2
set range [validrange $e]
set ts1 [lindex $range 0]
set ts2 [lindex $range 1]
set delta1 [expr $ts1 - $t1]
set delta2 [expr $t2 - $ts2]
if {$delta1 < 1.e-7 || $delta1 > $toler || $delta2 < 1.e-7 || $delta2 > $toler} {
puts "Error: incorrect computation of the valid range"
}
}