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
43 lines
998 B
Plaintext
Executable File
43 lines
998 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC21448"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Invalid result of BRepOffsetAPI_MakePipeShell
|
|
#######################################################################
|
|
|
|
set BugNumber OCC21448
|
|
|
|
puts "Load first shape ..."
|
|
restore [locate_data_file bug21448_base_1.brep] base1
|
|
|
|
puts "Load second shape ..."
|
|
restore [locate_data_file bug21448_Invert_2.brep] Invert_2
|
|
|
|
puts "Load third shape ..."
|
|
restore [locate_data_file bug21448_chemin.brep] chemin
|
|
|
|
puts "Prepare shapes ..."
|
|
wire w1 chemin
|
|
explode base1 W
|
|
explode Invert_2 W
|
|
explode chemin V
|
|
|
|
puts "Start Make pipe ..."
|
|
mksweep w1
|
|
addsweep base1_1 chemin_1 -R
|
|
addsweep Invert_2_1 chemin_2 -R
|
|
buildsweep result
|
|
puts "Finish Make pipe ..."
|
|
|
|
checkprops result -s 1040.94
|
|
checkshape result
|
|
|
|
checknbshapes result -vertex 4 -edge 6 -wire 2 -face 2 -shell 1 -solid 0 -compsolid 0 -compound 0 -shape 15
|
|
vinit
|
|
vsetdispmode 0
|
|
vdisplay result
|
|
vfit
|
|
|
|
set only_screen 0
|