mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Fix that face, in which only wire was reordered during shape healing, was not replaced. Add test case for this fix Add status for shifted wires in reordering. Modified test case de/step_1/E3 according to new reference data
26 lines
584 B
Plaintext
Executable File
26 lines
584 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC21317"
|
|
puts "================"
|
|
puts ""
|
|
######################################################################################
|
|
# Face cannot be fixed by Shape Healing
|
|
######################################################################################
|
|
|
|
set BugNumber OCC21317
|
|
|
|
catch {pload XDE}
|
|
|
|
restore [locate_data_file bug21317_faulty.brep] a
|
|
fixshape result a
|
|
set info [checkshape result]
|
|
|
|
# Resume
|
|
puts ""
|
|
if { [regexp {This shape seems to be valid} $info] } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
|
|
set 2dviewer 0
|