1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_6/bug27269
nbv b55bd02353 0027269: Intersection algorithm produces null-length curve
Restriction line can correspond to a degenerated edge. In this case we shall return null-curve (instead of Null-length curve).
2016-04-28 14:21:40 +03:00

37 lines
743 B
Plaintext

puts "============"
puts "OCC27269"
puts "============"
puts ""
###############################
## Intersection algorithm produces null-length curve
###############################
restore [locate_data_file bug27267_cmpd.brep] a
explode a f
#############################
set log [bopcurves a_1 a_7 -2d]
#############################
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log} full Toler NbCurv
for {set i 1} {$i <= ${NbCurv}} {incr i} {
bounds c_$i U1 U2
dump U1 U2
if {[dval U2-U1] < 1.0e-20} {
puts "Error: Wrong curve's range!"
}
set le [length c_$i]
regexp "The length c_$i is +(\[-0-9.+eE\]+)" ${le} full ll
if { $ll < 1.0e-7 } {
puts "Error: Curve c_$i is too small!"
}
}