mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Remove performance comparing with hardcoded value. Test cases for performance of some commands were moved to perf group. Updated documentation.
32 lines
910 B
Plaintext
32 lines
910 B
Plaintext
puts "============"
|
|
puts "OCC19793"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Fuse problem of symetrical shapes. Appendix for NPAL19789
|
|
#######################################################################
|
|
|
|
cpulimit 2500
|
|
set BugNumber OCC19793
|
|
|
|
puts "Load first shape ..."
|
|
restore [locate_data_file bug19793_new_shape.brep] b1
|
|
puts "Load second shape ..."
|
|
restore [locate_data_file bug19793_shape.brep] b2
|
|
|
|
puts "Prepare boolean operation ..."
|
|
dchrono perf_h restart
|
|
bop b1 b2
|
|
dchrono perf_h stop counter bop
|
|
|
|
puts "Start boolean operation ..."
|
|
bopsection result
|
|
puts "Finish boolean operation ..."
|
|
|
|
checkprops result -l 17730.1
|
|
checkshape result
|
|
checksection result
|
|
checknbshapes result -vertex 68 -edge 70 -wire 0 -face 0 -shell 0 -solid 0 -compsolid 0 -compound 1 -shape 139
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|