1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/tests/bugs/modalg_7/bug28984
emv 7337535943 0028892: BOPAlgo_PaveFiller returns status "error: 11" in draw or raises exception in app on the given shapes set
Boolean Operations algorithm - Added processing of the untouched edges (without edge set) in the UpdatePaveBlocks method.

IntCurvesFace_Intersector algorithm - Avoid calculation of the number of sample points on the surfaces with too small UV ranges.
2017-08-17 15:47:50 +03:00

25 lines
639 B
Plaintext

puts "TODO OCC28984 ALL: Error: Too big intersection tolerance"
puts "======="
puts "0028984"
puts "======="
puts ""
##################################################
# Huge intersection tolerance obtained by Face/Face intersection algorithm
##################################################
binrestore [locate_data_file bug28984_faces.bin] f
explode f
set log [bopcurves f_1 f_2 -2d]
regexp {Tolerance Reached=([-0-9.+eE]+)} $log full tol_reached
regexp {([1-9]) curve} $log full nb_curves
if {$nb_curves != 2} {
puts "Error: Invalid number of curves"
}
if {$tol_reached > 0.1} {
puts "Error: Too big intersection tolerance"
}