mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
- Added function checkprops, set default tolerance parameter to 1.0e-4 - Using "area" instead of "square". - Options "-equal\notequal" isn't used together with "-s" in blend and offset test cases. - Correct regressions/differences/improvements and CPU problem (set props tolerance to 0.1) - Corrected test cases to use checkprops proc. - Correct image difference - Updated TODOs in test cases. - Updated test cases to get correct images of result shape
32 lines
771 B
Plaintext
Executable File
32 lines
771 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC21460"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# SIGFPE in BOP on two attached edges
|
|
#######################################################################
|
|
|
|
set BugNumber OCC21460
|
|
|
|
puts "Load first shape ..."
|
|
restore [locate_data_file bug21460_aE1.brep] e1
|
|
|
|
puts "Load second shape ..."
|
|
restore [locate_data_file bug21460_aE2.brep] e2
|
|
|
|
puts "Prepare boolean operation ..."
|
|
bop e1 e2
|
|
|
|
puts "Start boolean operation ..."
|
|
bopfuse result
|
|
puts "Finish boolean operation ..."
|
|
|
|
set mistake 0
|
|
|
|
checkprops result -l 448.285
|
|
checkshape result
|
|
checksection result
|
|
|
|
checknbshapes result -vertex 5 -edge 4 -wire 0 -face 0 -shell 0 -solid 0 -compsolid 0 -compound 1 -shape 10
|
|
set 2dviewer 0
|