1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/filling/bug13904
jgv c6f14a5213 0031558: BRepOffsetAPI_MakeFilling algorithm makes turned inside out face
1. Modification in method BRepFill_Filling::Build - correction of building the wire.
2. Create new subgroup "filling" in the group "bugs".
2020-05-22 11:07:35 +03:00

34 lines
682 B
Plaintext

puts "==========="
puts "OCC13904"
puts "==========="
######################################################
# Exception during "filling" operation
######################################################
set BugNumber OCC13904
circle c 0 100 100 0 1 1 50
ellipse el 0 0 0 0 1 1 100 50
set mistake 0
if [catch { appsurf result c el } res] {
set mistake 1
puts "Faulty ${BugNumber}: filling problem"
} else {
puts "Filling ${BugNumber} OK"
set What [whatis result]
if { [regexp "surface" $What] != 1 } {
set mistake 1
} else {
set mistake 0
}
}
# Resume
puts ""
if { ${mistake} != 0 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}