mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 18:32:35 +08: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"
|
|
}
|
|
|