mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0024097: BRepAlgoAPI_Section returns wrong result
Test case added: bugs modalg_6 bug24097
This commit is contained in:
parent
9f4cd8eb1b
commit
646529083a
33
tests/bugs/modalg_6/bug24097
Normal file
33
tests/bugs/modalg_6/bug24097
Normal file
@ -0,0 +1,33 @@
|
||||
puts "##################################################"
|
||||
puts "0024097: BRepAlgoAPI_Section returns wrong result"
|
||||
puts "##################################################"
|
||||
|
||||
# load and check faces
|
||||
restore [locate_data_file bug24097_face1.brep] a
|
||||
tolerance a
|
||||
checkshape a
|
||||
|
||||
restore [locate_data_file bug24097_face2.brep] b
|
||||
tolerance b
|
||||
checkshape b
|
||||
|
||||
# build section
|
||||
bsection result a b
|
||||
|
||||
# result should be single open edge with length 0.125
|
||||
checknbshapes result -vertex 2 -edge 1
|
||||
checkmaxtol result -ref 0.0001
|
||||
|
||||
if { [regexp {Mass\s*:\s*([0-9.e+-]*)} [lprops result] dummy length] } {
|
||||
checkreal "Length of the section" $length 0.125 0.0001 0.1
|
||||
} else {
|
||||
puts "Error: cannot get length of result!"
|
||||
}
|
||||
|
||||
# make snapshot
|
||||
vinit Driver1/Viewer1/View1
|
||||
vclear
|
||||
eval vdisplay result [explode result v]
|
||||
vfit
|
||||
vdisplay a b
|
||||
vdump $imagedir/${test_image}.png
|
Loading…
x
Reference in New Issue
Block a user