mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Check both sides of internal link for adjusted triangle and process left and right polygons separately Small correction of test case for issue CR27959
22 lines
610 B
Plaintext
22 lines
610 B
Plaintext
puts "=========="
|
|
puts "OCC27959"
|
|
puts "=========="
|
|
puts ""
|
|
#######################################################################
|
|
# BRepMesh_Delaun produces mesh with gaps on internal edges
|
|
#######################################################################
|
|
# test for #27959: check that resulting mesh does not contain gaps.
|
|
|
|
restore [locate_data_file bug27959_ms.brep] result
|
|
|
|
tclean result
|
|
checkview -display result -3d -path ${imagedir}/${test_image}.png
|
|
|
|
set log [tricheck result]
|
|
if { [llength $log] != 0 } {
|
|
puts "Error : Mesh contains gaps"
|
|
} else {
|
|
puts "OK : Mesh produced without gaps"
|
|
}
|
|
|