1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/vis/bug10781
ski 5747059b21 0026833: Create command checkview containing all viewer types
Created command checkview for displaying shapes.
2016-02-05 11:14:37 +03:00

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