1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_7/bug29488_2
nbv 8dc56d0f88 0029494: Intersection line between two parametric surfaces is restricted incorrectly if it matches the surface boundary
Creation of IntPatch_Points is forbidden in tangent-zones exceptionally domain boundaries of intersected surface.
2018-02-16 15:09:10 +03:00

31 lines
889 B
Plaintext

puts "========"
puts "OCC29488"
puts "========"
puts ""
#################################################
# Regression: boolean operation " general fuse" creates solid containing 5 not connected shells lying on the one level
#################################################
restore [locate_data_file bug29488_shapes.brep] s
bclearobjects
bcleartools
eval baddobjects [explode s]
bfillds
bbuild result
checkshape result
checknbshapes result -wire 390 -face 366 -shell 10 -solid 2
checkprops result -s 77135.9 -v 245074
set MinArea 0.001
foreach f [explode result f] {
regexp {Mass +: +([-0-9.+eE]+)} [sprops $f 1.0e-4] full anArea
if { $anArea == 0.0 } {
puts "Error in area computation: it is equal to 0"
} elseif {$anArea < $MinArea} {
puts "Error: Too small face has been created (S < $MinArea)"
}
}
checkview -display result -2d -path ${imagedir}/${test_image}.png