1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
ski 5747059b21 0026833: Create command checkview containing all viewer types
Created command checkview for displaying shapes.
2016-02-05 11:14:37 +03:00

37 lines
1.0 KiB
Plaintext
Executable File

puts "======="
puts "OCC22"
puts "======="
puts ""
#####################################################################
##Locations are not correctly processed by ShapeBuild_ReShape (and base class BRepTools_ReShape)
#####################################################################
pload QAcommands
restore [locate_data_file OCC21.brep] shape
explode shape f
compound shape_1 shape_2 compoundToBeDivided
# Case A of the bug is reproduced. Resulting shape must have 5 faces instead of 3
if [catch { OCC22 result shape compoundToBeDivided 0 } ] {
puts "OCC22 ERROR; (case 1)"
} else {
puts "OCC22 OK; (case 1)"
}
regexp {([-0-9.+eE]+)\s FACE} [statshape result] full nbFaces
if {$nbFaces != 5} {
puts "OCC22 FAULTY: Initial shape was not splitted"
}
# Case B of the bug is reproduced. Result must be valid
if [catch { OCC22 res shape compoundToBeDivided 1 } ] {
puts "OCC22 ERROR; (case 2)"
} else {
puts "OCC22 OK; (case 2)"
}
checkview -display result -2d -path ${imagedir}/${test_image}.png