mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
34 lines
689 B
Plaintext
Executable File
34 lines
689 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC10781"
|
|
puts "MeshVS is not sensitive to width of edges"
|
|
puts "============"
|
|
puts ""
|
|
|
|
set BugNumber OCC10781
|
|
|
|
pload XDE
|
|
|
|
vinit View1
|
|
vclear
|
|
vaxo
|
|
|
|
meshfromstl m [locate_data_file OMF6391_box.stl]
|
|
|
|
set aCoordX 206
|
|
set aCoordY 280
|
|
|
|
vmoveto $aCoordX $aCoordY
|
|
|
|
set aColor1px [vreadpixel $aCoordX $aCoordY rgb name]
|
|
if { "$aColor1px" != "BLACK" } {
|
|
puts "Error: BLACK color is expected at pixel ${aCoordX}x${aCoordY}"
|
|
}
|
|
|
|
mesh_edge_width m 6
|
|
set aColor5px [vreadpixel $aCoordX $aCoordY rgb name]
|
|
if { "$aColor5px" == "BLACK" } {
|
|
puts "Error: YELLOW color is expected at pixel ${aCoordX}x${aCoordY}"
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|