mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
23 lines
588 B
Plaintext
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"
|
|
}
|