1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/heal/bug26620
aml 98a4340017 0026620: Shape healing unreasonably downgrades tolerance of a face
Added face support in SameParameter in classes ShapeAnalysis_Edge, ShapeFix_Edge.

Test case for issue CR26620

Minor correction.
2015-10-22 14:59:43 +03:00

27 lines
755 B
Plaintext

puts "REQUIRED ALL: Faulty shapes in variables faulty_1 to"
puts "============"
puts "OCC26620"
puts "============"
puts ""
#######################################################################
## Shape healing unreasonably downgrades tolerance of a face
#######################################################################
restore [locate_data_file bug26620_ff.brep] ff
puts "\nBefore shape healing"
checkshape ff
tolerance ff
fixshape r ff
puts "\nAfter shape healing"
checkshape r
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance r] full MaxTol
set expected_MaxTolerance 0.1
set tol_abs_MaxTolerance 0.5
set tol_rel_MaxTolerance 0.5
checkreal "MaxTolerance" ${MaxTol} ${expected_MaxTolerance} ${tol_abs_MaxTolerance} ${tol_rel_MaxTolerance}