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/bug27008
vpa d4507e82ba 0027008: Visualization - polygonal selection algorithm does not work with MeshVS_Mesh
- correct calculation of normals for SelectMgr_TriangularFrustum;
- test case for issue #27008
2016-11-03 14:15:53 +03:00

28 lines
787 B
Plaintext

puts "==========="
puts "OCC27008"
puts "==========="
puts ""
##########################################################################
# Visualization - polygonal selection algorithm does not work with MeshVS_Mesh
##########################################################################
pload VISUALIZATION XDE
vclear
vinit View1
meshfromstl m [locate_data_file head.stl]
vsetdispmode m 2
vselmode m 8 1
vselect 0 0 409 409 0 409
if { [vnbselected] != "56748" } { puts "Error: the number of selected elements differs for mode 8" }
vdump $imagedir/${casename}_mode_8.png
vselect 0 0
vselmode m 8 0
vselmode m 1 1
vselect 0 0 409 409 0 409
if { [vnbselected] != "30830" } { puts "Error: the number of selected elements differs for mode 1" }
vdump $imagedir/${casename}_mode_1.png