mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Modify method IntWalk_IWalking::ComputeCloseLine: add new flag "isOnDegeneratedBorder" to reach the border successfully.
41 lines
932 B
Plaintext
Executable File
41 lines
932 B
Plaintext
Executable File
puts "========"
|
|
puts "OCC27390"
|
|
puts "========"
|
|
puts ""
|
|
###########################################################################
|
|
# Box and Ellipsoid shape boolean cut and common introduce invalid result.
|
|
###########################################################################
|
|
|
|
restore [locate_data_file bug27390_Box_Ellipsoid.brep] c
|
|
|
|
explode c
|
|
|
|
bcut result c_1 c_2
|
|
|
|
checkshape result
|
|
|
|
checkprops result -s 34566
|
|
|
|
set nbshapes_expected "
|
|
Number of shapes in shape
|
|
VERTEX : 13
|
|
EDGE : 20
|
|
WIRE : 8
|
|
FACE : 8
|
|
SHELL : 1
|
|
SOLID : 1
|
|
COMPSOLID : 0
|
|
COMPOUND : 1
|
|
SHAPE : 52
|
|
"
|
|
checknbshapes result -ref ${nbshapes_expected} -t -m "Boolean operations cut"
|
|
|
|
set tolres [checkmaxtol result]
|
|
|
|
if { ${tolres} > 6.e-6} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
checkview -display result -3d -path ${imagedir}/${test_image}-3d.png
|
|
checkview -display result -2d -path ${imagedir}/${test_image}-2d.png
|