mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
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.
19 lines
361 B
Plaintext
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"
|
|
}
|