1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/mesh/bug27239
oan dfb3bdd43a 0027239: Meshing algorithm creates wrong Triangulation
Do not insert consequent duplicating nodes in PolygonOnTriangulation.

Small correction of test case bugs/mesh/bug27239
2016-06-23 18:14:23 +03:00

30 lines
713 B
Plaintext

puts "========="
puts "OCC27239"
puts "========="
puts ""
#################################
# Meshing algorithm creates wrong triangulation
#################################
pload ALL
restore [locate_data_file bug27239_f1.brep] result
set bug_info [incmesh result 0.1]
if {[regexp "NoError" $bug_info] != 1} {
puts "Error: failure during triangulation"
}
set log [tricheck result]
if { [llength $log] != 0 } {
puts "Error : Some faces has failed to mesh"
}
checkshape result
explode result e
set edge_dump [dump result_4]
if {[regexp "5 5" $edge_dump] != 0} {
puts "Error: there are duplicating nodes in polygon on triangulation"
}
checkview -display result -3d -path ${imagedir}/${test_image}.png