mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
TopAbs::ShapeTypeToString() is now used instead of duplicating TopAbs_ShapeEnum printing code. vselmode now accepts shape type string for activating standard AIS_Shape selection modes.
18 lines
392 B
Plaintext
18 lines
392 B
Plaintext
puts "==========="
|
|
puts "0028365: Visualization, AIS_InteractiveContext - apply selection filter in AddOrRemoveSelected at Neutral point"
|
|
puts "==========="
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
box b 10 10 10
|
|
|
|
vclear
|
|
vinit View1
|
|
vdisplay b
|
|
vfit
|
|
vselfilter -type VERTEX
|
|
vchangeselected b
|
|
|
|
set aNbSelected [vnbselected]
|
|
if { $aNbSelected != 0 } { puts "Error: Vertex filter was not applied" }
|