1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/v3d/bugs/bug23200_1
kgv 005caf39cf 0032633: Draw Harness - extend command incmesh to apply default visualization parameters
incmesh - added -prs option to use StdPrs_ToolTriangulatedShape::GetDeflection() as meshing parameters.
vdisplay, XDisplay - added -autoTriangulation option to manage meshing behavior before displaying a shape.
trinfo - added output of meshing parameters.
Fixed broken incmesh syntax usage in several test cases.
2021-10-22 19:58:15 +03:00

23 lines
588 B
Plaintext

puts "============"
puts "CR23200"
puts "Check that the shape doesn't have a shading presentation"
puts "due to its triangulation isn't computed in case of disabled auto triangulation feature."
puts "But in this case the shape should have special wireframe presentation."
puts "============"
puts ""
pload MODELING VISUALIZATION
vinit View1
vclear
vaxo
pcone c 0 5 10
vdisplay c -dispMode 1 -autoTriang off
vfit
set aColor [vreadpixel 200 77 rgb name]
vdump $imagedir/${casename}_shape_pres.png
if {"$aColor" != "GRAY75"} {
puts "Error: shading presentation of shape is incorrect"
}