1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/vselect/cone_cylinder/single_click_selection_cylinder
kgv 794b3d8936 0032652: Visualization - Select3D_SensitiveCylinder returns wrong 3D point on transformed shape
SelectMgr_RectangularFrustum::OverlapsCylinder() - added missing 3D point transformation.
StdSelect_BRepSelectionTool::ComputeSensitive() - fixed cylinder height computation on TopoDS_Shape with scale transformation.
SelectMgr_AxisIntersector::OverlapsCylinder(),::OverlapsSphere() - added missing computations of surface normal.
2021-11-21 12:42:10 +03:00

40 lines
1.6 KiB
Plaintext

puts "================================="
puts "0032281: Visualization - add Select3D_SensitiveCylinder"
puts "Tests selection of Select3D_SensitiveCylinder"
puts "================================="
pload MODELING VISUALIZATION
vinit View1 -height 400 -width 600
pcylinder cyl 10 20
vdisplay cyl -dispmode 1
vfit
vselect 300 200
if { ![string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be selected" }
vselect 300 100
if { ![string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be selected" }
vselect 300 300
if { ![string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be selected" }
vselect 300 25
if { [string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be unselected" }
vselect 388 50
if { [string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be unselected" }
vselect 424 200
if { [string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be unselected" }
vselect 300 35
if { ![string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be selected" }
vselect 420 95
if { ![string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be selected" }
vselect 420 200
if { ![string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be selected" }
vtop
vfit
vselect 300 200
if { ![string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be selected" }
vselect 440 64
if { ![string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be selected" }
vselect 446 60
if { [string match "*Selected*" [vstate cyl]] } { puts "Error: cylinder should be unselected" }