mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Add new flag IsAutoTriangulated to Prs3d_Drawer. It is True by default. If this flag is True automatic re-triangulation with deflection-check logic will be applied. Else this feature will be disable and triangulation is expected to be computed by application itself. Change the syntax of vdefalts command. Add new parameter -autoTriang for check of AutoTriangulated functionality. Adjust camera position in test case bugs/xde/bug23969
24 lines
572 B
Plaintext
24 lines
572 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 ""
|
|
|
|
vinit View1
|
|
vclear
|
|
vaxo
|
|
vsetdispmode 1
|
|
vdefaults -autoTriang off
|
|
pcone c 0 5 10
|
|
vdisplay c
|
|
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"
|
|
}
|