mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added check and fix of tolerances of all vertices after performing all fixes. It is necessary to avoid situation when point of vertex belonging a few faces was changed for current face but edges containing this vertex belonging before fixed face are not taking into account. Mode FixVertexTolMode to manage check tolerance of vertices was added in ShapeFix_Shape class. (default value is equal to -1) Method to change FixVertexTolMode mode FixVertexTolMode() was added in ShapeFix_Shape class Test case for CR25455
22 lines
463 B
Plaintext
22 lines
463 B
Plaintext
puts "============"
|
|
puts "OCC25455"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# fixshape works at the second attempt
|
|
######################################################
|
|
|
|
restore [locate_data_file bug25455_rx.brep] rx
|
|
|
|
fixshape rx rx
|
|
|
|
set info [checkshape rx]
|
|
|
|
# Resume
|
|
puts ""
|
|
if { [regexp {This shape seems to be valid} ${info}] } {
|
|
puts "OK: fixshape works properly"
|
|
} else {
|
|
puts "Error: fixshape works bad"
|
|
}
|