mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
25 lines
521 B
Plaintext
25 lines
521 B
Plaintext
puts "========"
|
|
puts "OCC28719"
|
|
puts "========"
|
|
puts ""
|
|
###################################
|
|
# Display issue for special model
|
|
###################################
|
|
|
|
restore [locate_data_file bug28719_display_issue.brep] result
|
|
tclean result
|
|
|
|
vinit
|
|
vdisplay result
|
|
vsetdispmode result 1
|
|
vfit
|
|
|
|
set log [tricheck result]
|
|
if { [llength $log] != 0 } {
|
|
puts "ERROR: OCC28719 is reproduced. Nontriangulated faces have been detected."
|
|
} else {
|
|
puts "Mesh is OK"
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|