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/bug30780
oan 3c1b70842d 0030780: [Regression to 7.3.0] BRepMesh fails triangulating one face of the shape
Added new parameter KeepSmallEdges to IMeshTools_Parameters allowing to compute min size for each edge locally, depending on the length of particular edge.
Parameter -smalledges now available for incmesh command.
2019-06-25 19:46:09 +03:00

19 lines
361 B
Plaintext

puts "========="
puts "0030780: BRepMesh fails triangulating one face of the shape"
puts "========="
puts ""
binrestore [locate_data_file bug30780_full.bin] result
tclean result
incmesh result 7.066 -a 20 -adjust_min
checktrinfo result -tri
set log [tricheck result]
if { [llength $log] != 0 } {
puts "Error : Invalid mesh"
} else {
puts "Mesh is OK"
}