mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
1. New status "BRepCheck_InvalidPolygonOnTriangulation" is added. 2. Small correction of output of "checkshape" command result. Test cases were changed. Test case for issue CR25109 Some test cases were changed according to their new behavior.
20 lines
571 B
Plaintext
20 lines
571 B
Plaintext
puts "============"
|
|
puts "CR25109"
|
|
puts "============"
|
|
puts ""
|
|
##########################################################################################################
|
|
# Check PolygonOnTriangulation contained in edges
|
|
##########################################################################################################
|
|
|
|
restore [locate_data_file bug25109_e1.brep] b
|
|
|
|
decho off
|
|
set info [checkshape b]
|
|
decho on
|
|
|
|
if { [regexp "This shape seems to be valid" ${info}] == 1 } {
|
|
puts "Error: checkshape is incorrect"
|
|
} else {
|
|
puts "OK: checkshape is correct"
|
|
}
|