mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added set of methods CopyVertex in BRepTools_ReShape. Usage of this non-modifying methods added in ShapeFix_Wire, ShapeFix_Edge. Test case for issue 26656. Test cases updated to the new behavior. Correction of test cases for issue CR26656 Changed access by value to access by reference in method CopyVertex.
28 lines
982 B
Plaintext
28 lines
982 B
Plaintext
puts "========"
|
|
puts "OCC26656"
|
|
puts "========"
|
|
puts ""
|
|
#######################################################################
|
|
# ShapeFix_Face introduces extremely high vertex tolerance in the input shape
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug26656_unify.input.brep] i
|
|
|
|
puts "\nBefore ShapeFix_Face"
|
|
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance i] full MaxTolerance_1
|
|
|
|
set expected_MaxTolerance 2.0024548532087701e-07
|
|
set tol_abs_MaxTolerance 5.0e-7
|
|
set tol_rel_MaxTolerance 0.1
|
|
|
|
puts "MaxTolerance_1 = $MaxTolerance_1"
|
|
checkreal "MaxTolerance" ${MaxTolerance_1} ${expected_MaxTolerance} ${tol_abs_MaxTolerance} ${tol_rel_MaxTolerance}
|
|
|
|
unifysamedom r i
|
|
|
|
puts "\nAfter ShapeFix_Face"
|
|
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance i] full MaxTolerance_2
|
|
|
|
puts "MaxTolerance_2 = $MaxTolerance_2"
|
|
checkreal "MaxTolerance" ${MaxTolerance_2} ${expected_MaxTolerance} ${tol_abs_MaxTolerance} ${tol_rel_MaxTolerance}
|