1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
luz paz 7b5e532f83 0031939: Coding - correction of spelling errors in comments [part 7]
Fix various typos

Fixed via codespell v2.1.dev
2021-01-20 21:27:44 +03:00

37 lines
1023 B
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 split"
}
# 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