mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023378: BRepAlgoAPI_Cut returns wrong result
Adding test cases only
This commit is contained in:
parent
ec2039e9a7
commit
3b337f77ed
@ -9,12 +9,13 @@
|
|||||||
009 modalg_4
|
009 modalg_4
|
||||||
010 modalg_5
|
010 modalg_5
|
||||||
011 modalg_6
|
011 modalg_6
|
||||||
012 moddata_1
|
012 modalg_7
|
||||||
013 moddata_2
|
013 moddata_1
|
||||||
014 moddata_3
|
014 moddata_2
|
||||||
015 step
|
015 moddata_3
|
||||||
016 caf
|
016 step
|
||||||
017 mesh
|
017 caf
|
||||||
018 heal
|
018 mesh
|
||||||
019 stlvrml
|
019 heal
|
||||||
020 splitshape
|
020 stlvrml
|
||||||
|
021 splitshape
|
20
tests/bugs/modalg_7/begin
Normal file
20
tests/bugs/modalg_7/begin
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
set subgroup modalg
|
||||||
|
|
||||||
|
set calcul "p"
|
||||||
|
set type "i"
|
||||||
|
|
||||||
|
proc OFFSETSHAPE {distance faces calcul type} {
|
||||||
|
uplevel #0 explode s f
|
||||||
|
uplevel #0 offsetparameter 1e-7 $calcul $type
|
||||||
|
uplevel #0 offsetload s $distance $faces
|
||||||
|
uplevel #0 offsetperform result
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
33
tests/bugs/modalg_7/bug23378_1
Normal file
33
tests/bugs/modalg_7/bug23378_1
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "OCC23378"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
########################################
|
||||||
|
# BRepAlgoAPI_Cut returns wrong result
|
||||||
|
########################################
|
||||||
|
|
||||||
|
# Restore the initial shape
|
||||||
|
restore [locate_data_file bug23378_blower1.brep] b
|
||||||
|
|
||||||
|
# Test case body
|
||||||
|
explode b
|
||||||
|
bop b_1 b_2
|
||||||
|
bopcut r
|
||||||
|
|
||||||
|
# Result of operation should be two shapes (checking)
|
||||||
|
set oper_result [explode r]
|
||||||
|
if {[llength $oper_result] != 2} {
|
||||||
|
puts "ERRROR: Result of BrepAlgoAPI_Cut is unexpected"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Algorithmic check of r_1 shape
|
||||||
|
renamevar r_1 result
|
||||||
|
checkshape result
|
||||||
|
checkprops result -s 864274
|
||||||
|
|
||||||
|
# Visualization check of r_1 shape
|
||||||
|
vinit
|
||||||
|
vsetdispmode 1
|
||||||
|
vdisplay result
|
||||||
|
vfit
|
||||||
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|
33
tests/bugs/modalg_7/bug23378_2
Normal file
33
tests/bugs/modalg_7/bug23378_2
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "OCC23378"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
########################################
|
||||||
|
# BRepAlgoAPI_Cut returns wrong result
|
||||||
|
########################################
|
||||||
|
|
||||||
|
# Restore the initial shape
|
||||||
|
restore [locate_data_file bug23378_blower1.brep] b
|
||||||
|
|
||||||
|
# Test case body
|
||||||
|
explode b
|
||||||
|
bop b_1 b_2
|
||||||
|
bopcut r
|
||||||
|
|
||||||
|
# Result of operation should be two shapes (checking)
|
||||||
|
set oper_result [explode r]
|
||||||
|
if {[llength $oper_result] != 2} {
|
||||||
|
puts "ERRROR: Result of BrepAlgoAPI_Cut is unexpected"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Algorithmic check of r_2 shape
|
||||||
|
renamevar r_2 result
|
||||||
|
checkshape result
|
||||||
|
checkprops result -s 2.77917
|
||||||
|
|
||||||
|
# Visualization check of r_2 shape
|
||||||
|
vinit
|
||||||
|
vsetdispmode 1
|
||||||
|
vdisplay result
|
||||||
|
vfit
|
||||||
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|
Loading…
x
Reference in New Issue
Block a user