mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Select3D_SensitiveCircle now inherits directly from Select3D_SensitiveEntity. The sensitive circle sector is created using the Select3D_SensitivePoly class directly. Added appropriate methods for selecting sensitive circles. Added parameter myIsHollow to Select3D_SensitiveCylinder class. It allows you to search for intersections with cylinders without covers. The Draw vcircle command has been extended with UStart and UEnd parameters to create a sector of a circle. Added tests: vselect/cone_cylinder/circle_sector vselect/cone_cylinder/circle_wire vselect/cone_cylinder/filled_circle vselect/cone_cylinder/transformed vselect/cone_cylinder/hollow_cone_cyl
68 lines
2.9 KiB
Plaintext
68 lines
2.9 KiB
Plaintext
puts "================================="
|
|
puts "0032547: Visualization, Select3D_SensitiveCylinder - implement picking of a hollow cylinder"
|
|
puts ""
|
|
puts "================================="
|
|
|
|
pload VISUALIZATION OPENGL
|
|
vinit View1
|
|
|
|
vpoint radP1 0 0 0
|
|
vpoint radP2 50 50 0
|
|
vpoint radP3 100 0 0
|
|
vcircle circle radP1 radP2 radP3 1
|
|
vaxo
|
|
vfit
|
|
|
|
# Single click selection
|
|
# point inside a circle
|
|
vselect 200 200
|
|
if { ![string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle should be detected" }
|
|
|
|
# point on circle
|
|
vselect 177 279
|
|
if { ![string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle should be detected" }
|
|
|
|
# point outside a circle
|
|
vselect 360 360
|
|
if { [string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle should not be detected" }
|
|
|
|
|
|
# Selection with polygon
|
|
# circle inside a polygon
|
|
vselect 50 300 360 300 360 100 50 100
|
|
if { ![string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle inside a polygon should be detected" }
|
|
|
|
# circle is partially covered by a polygon
|
|
vselect 250 300 360 300 360 100 250 100 -allowoverlap 0
|
|
if { [string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle partially covered by a polygon should not be detected" }
|
|
|
|
vselect 250 300 360 300 360 100 250 100 -allowoverlap 1
|
|
if { ![string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle partially covered by a polygon should be detected" }
|
|
|
|
# polygon inside a circle
|
|
vselect 150 200 200 200 200 150 150 150 -allowoverlap 0
|
|
if { [string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle around the polygon should not be detected" }
|
|
|
|
vselect 150 200 200 200 200 150 150 150 -allowoverlap 1
|
|
if { ![string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle around the polygon should be detected" }
|
|
|
|
|
|
# Selection with rectangle
|
|
# circle inside a rectangle
|
|
vselect 50 300 360 100
|
|
if { ![string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle inside a rectangle should be detected" }
|
|
|
|
# circle is partially covered by a rectangle
|
|
vselect 250 300 360 100 -allowoverlap 0
|
|
if { [string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle partially covered by a rectangle should not be detected" }
|
|
|
|
vselect 250 300 360 100 -allowoverlap 1
|
|
if { ![string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle partially covered by a rectangle should be detected" }
|
|
|
|
# rectangle inside a circle
|
|
vselect 150 200 200 150 -allowoverlap 0
|
|
if { [string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle around the rectangle should not be detected" }
|
|
|
|
vselect 150 200 200 150 -allowoverlap 1
|
|
if { ![string match "*Select3D_SensitiveCircle*" [vstate -entities]] } { puts "Error: circle around the rectangle should be detected" }
|