mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- correct calculation of normals for SelectMgr_TriangularFrustum; - test case for issue #27008
28 lines
787 B
Plaintext
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
|