mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. Removal of the traces of the usage of old Boolean operations in BRepFeat package. 2. The DRAW commands *fubl* and *cubl* based on old Boolean operations have been removed. The alternative for these commands are the commands *bfuseblend* and *bcutblend* respectively. The last two commands are based on the modern Boolean operations. 3. The DRAW command *ksection* based on old Boolean operations has been removed. The command *bsection* should be used as alternative. Test cases which have been using the *ksection* command have been modified to use the *bsection* command. 4. The class QANewBRepNaming_BooleanOperation has been modified to use modern Boolean operations. The class QANewBRepNaming_BooleanOperation has been removed as not used. The class QANewBRepNaming_BooleanOperationFeat has been renamed to QANewBRepNaming_BooleanOperation as it has nothing to do with Feat algorithm.
20 lines
401 B
Plaintext
Executable File
20 lines
401 B
Plaintext
Executable File
puts "========================"
|
|
puts "BUC60744"
|
|
puts "========================"
|
|
puts ""
|
|
|
|
restore [locate_data_file buc60744a.brep] a
|
|
restore [locate_data_file buc60744b.brep] b
|
|
|
|
bsection result a b
|
|
|
|
checkshape result
|
|
|
|
if {[lindex [checksection result] 4] != 2} {
|
|
puts "Error: section is incomplete"
|
|
}
|
|
|
|
checkprops result -l 228.386
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|