mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-09 18:50:54 +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
30 lines
851 B
Plaintext
30 lines
851 B
Plaintext
puts "============"
|
|
puts "OCC25002"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Wrong result done by Boolean Operation algorithm
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug25002_pl1.brep] b1
|
|
restore [locate_data_file bug25002_selected_holes.brep] b2
|
|
|
|
bop b1 b2
|
|
bopcut r
|
|
|
|
bopsection result
|
|
|
|
regexp {nb alone Vertices : +([-0-9.+eE]+)} [checksection result] full nb_alone_Vertices
|
|
|
|
if { ${nb_alone_Vertices} == 0 } {
|
|
puts "OK: Good result done by Boolean Operation algorithm"
|
|
} else {
|
|
puts "Error: Wrong result done by Boolean Operation algorithm"
|
|
}
|
|
|
|
checkprops result -l 67.3503
|
|
checkshape result
|
|
|
|
checknbshapes result -vertex 1128 -edge 1128 -wire 0 -face 0 -shell 0 -solid 0 -compsolid 0 -compound 1 -shape 2257
|
|
set 2dviewer 1
|