mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The reason of FAIL status of FixGaps3d is that the trying to convert curves to BSplines on valid edges (both adjacent points saticfy a precision) leads to skipping of the convertation and gives wrong status. Check of the gap on adjacent points before try ro convert curves was added. Test-case for issue #24881
18 lines
451 B
Plaintext
18 lines
451 B
Plaintext
puts "========"
|
|
puts "OCC24881"
|
|
puts "========"
|
|
puts ""
|
|
##################################################################
|
|
# Wrong status returned by ShapeFix_Wire::FixGaps3d () operation
|
|
##################################################################
|
|
|
|
pload QAcommands
|
|
|
|
box b 100 200 300
|
|
|
|
set bug_info [OCC24881 b]
|
|
|
|
if {[lindex $bug_info 0] != "Fix_FillGaps_NothingToDo"} {
|
|
puts "ERROR: OCC24881 is reproduced. Status is [lindex $bug_info 0]"
|
|
}
|