1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/vis/bug25540
luz paz 7b5e532f83 0031939: Coding - correction of spelling errors in comments [part 7]
Fix various typos

Fixed via codespell v2.1.dev
2021-01-20 21:27:44 +03:00

48 lines
1.0 KiB
Plaintext

puts "============"
puts "CR25540"
puts "Check that the discretization of local selection,"
puts "wireframe and shaded presentation of shape is identical."
puts "============"
puts ""
vinit View1 w=912 h=912
vclear
# Create object in shaded mode
vsetdispmode 1
pcylinder p 1 100
vdisplay p
vfit
# Setup field of view
vrotate 1 1.5 0
vfit
vtranslateview 24 18.5 0
vzoom 32
vtranslateview -0.1 -0.6 0
vzoom 2
vdump $imagedir/${casename}_shaded_pres.png
vmoveto 100 100
vdump $imagedir/${casename}_h_pres.png
# Activate the local selection by edges and highlight small circle edge.
# It's discretization should coincide with discretization of whole shape hiligting.
vselmode p -set EDGE 1
vmoveto 130 80
vdump $imagedir/${casename}_local_h_pres.png
# Explode object on faces
explode p F
# Create colored shape: set another color to one face
vaspects p -subshapes p_3 -setcolor RED
vselmode p -set 0 1
vmoveto 100 100
vdump $imagedir/${casename}_h_sub_pres.png
vselmode p -set EDGE 1
vmoveto 130 80
vdump $imagedir/${casename}_local_h_sub_pres.png