mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Use real tolerance of a face to define threshold for tolerance of discrete model instead of empirical values based on discrete model itself
23 lines
456 B
Plaintext
23 lines
456 B
Plaintext
puts "=========="
|
|
puts "0023513: BRepMesh doesn't stop until out-of-memory"
|
|
puts "=========="
|
|
puts ""
|
|
|
|
restore [locate_data_file bug23513_infface.brep] result
|
|
|
|
vinit
|
|
vsetdispmode 1
|
|
vdisplay result
|
|
vfit
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|
|
|
|
checktrinfo result -tri 323820 -nod 161951 -defl 0.00096399964870812682
|
|
|
|
set log [tricheck result]
|
|
if { [llength $log] != 0 } {
|
|
puts "Error : Invalid mesh"
|
|
} else {
|
|
puts "Mesh is OK"
|
|
}
|