mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
1) Zoom persistence mode now fixes object in pixel coordinates and is independent on view size 2) Used gp_GTrsf instead of gp_Trsf SelectMgr_ViewerSelector to store Graphic3d_Mat4d 3) Zoom persisted objects changed behavior (become bigger) therefore test cases were updated according to new state. 4) Corrected scale for rectangular frustum Updated test for manipulator
87 lines
2.1 KiB
Plaintext
87 lines
2.1 KiB
Plaintext
puts "==============================================="
|
|
puts "AIS_Manipulator - check zoom persistence option"
|
|
puts "==============================================="
|
|
|
|
set anImage1 $imagedir/${casename}_1.png
|
|
set anImage2 $imagedir/${casename}_2.png
|
|
set anImage3 $imagedir/${casename}_3.png
|
|
set anImage4 $imagedir/${casename}_4.png
|
|
set anImage5 $imagedir/${casename}_5.png
|
|
set anImage6 $imagedir/${casename}_6.png
|
|
|
|
# -------------------------------------
|
|
# create manipulated and helper objects
|
|
# -------------------------------------
|
|
|
|
box b1 0 0 0 20 20 20
|
|
box b2 80 0 0 20 20 20
|
|
vdisplay b1
|
|
vdisplay b2
|
|
vtrihedron tri
|
|
vsetdispmode 1
|
|
vaxo
|
|
vfit
|
|
|
|
# --------------------------------------------------------
|
|
# create and test non-zoom persistent manipulator (test 1)
|
|
# --------------------------------------------------------
|
|
|
|
vmanipulator m1 -attach b1 -adjustPosition 1 -adjustSize 1 -enableModes 1 -zoomable 1
|
|
|
|
set mouse_pick_1 {84 135}
|
|
set mouse_pick_2 {29 103}
|
|
set mouse_pick_3 {29 103}
|
|
set mouse_drag_3 {121 126}
|
|
|
|
# pick at default zoom
|
|
vmoveto 0 0
|
|
vmoveto {*}$mouse_pick_1
|
|
vdump $anImage1
|
|
|
|
# pick at changed zoom
|
|
vzoom 1.5
|
|
vmoveto 0 0
|
|
vmoveto {*}$mouse_pick_2
|
|
vdump $anImage2
|
|
|
|
# drag object
|
|
vselect {*}$mouse_pick_3
|
|
vmanipulator m1 -startTransform {*}$mouse_pick_3
|
|
vmanipulator m1 -transform {*}$mouse_drag_3
|
|
vmanipulator m1 -stopTransform
|
|
vselect 0 0
|
|
vdump $anImage3
|
|
|
|
# ----------------------------------------------------
|
|
# create and test zoom persistent manipulator (test 2)
|
|
# ----------------------------------------------------
|
|
|
|
vfit
|
|
|
|
vmanipulator m2 -attach b2 -adjustPosition 1 -adjustSize 0 -enableModes 1 -zoomable 0 -size 40
|
|
|
|
set mouse_pick_1 {341 283}
|
|
set mouse_pick_2 {277 246}
|
|
set mouse_pick_3 {277 246}
|
|
set mouse_drag_3 {210 210}
|
|
|
|
# pick at default zoom
|
|
vmoveto 0 0
|
|
vmoveto {*}$mouse_pick_1
|
|
vdump $anImage4
|
|
|
|
# pick at changed zoom
|
|
vzoom 0.5
|
|
vmoveto 0 0
|
|
vmoveto {*}$mouse_pick_2
|
|
vdump $anImage5
|
|
|
|
# drag object
|
|
vselect {*}$mouse_pick_3
|
|
vmanipulator m2 -startTransform {*}$mouse_pick_3
|
|
vmanipulator m2 -transform {*}$mouse_drag_3
|
|
vmanipulator m2 -stopTransform
|
|
vselect 0 0
|
|
vdump $anImage6
|
|
|
|
set to_dump_screen 0 |