mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Removed testgrids 'bugs/vis' and '3rdparty'; tests have been redistributed across other grids. Moved testgrid 'v3d/ivtk' into dedicated 'vtk/ivtk'. Added testgrid 'vselect' dedicated to 3D viewer picking/selection functionality and filled with tests from 'v3d/vertex', 'v3d/face' and similar groups. Added testgrid 'opengl' dedicated to OpenGL driver low-level functionality (GLSL programs and similar) and filled with tests from 'v3d/glsl', 'v3d/raytrace', '3rdparty/fonts', 'bugs/vis' (portion) and similar. Added testgrid 'opengles3' dedicated to OpenGL ES 3.0 driver low-level functionality and reusing tests from 'opengl' testgrid. Subgroup 'opengles3/raytrace' is disabled on Windows, as Ray-Tracing currently requires OpenGL ES 3.2. while ANGLE library implements only OpenGL ES 3.0. Added testgrid 'opengles2' dedicated to OpenGL ES 2.0 driver low-level functionality and reusing a limited subset of passing tests from 'opengl' testgrid. Currently testgrid is activated only on Windows platform when using ANGLE library (properietary OpenGL ES drivers do not allow creation of restricted 2.0 context). Test cases have been cleaned out to put bug description into log, to properly load necessary plugins and to explicitly dump viewer.
88 lines
2.1 KiB
Plaintext
88 lines
2.1 KiB
Plaintext
puts "==============================================="
|
|
puts "AIS_Manipulator - check zoom persistence option"
|
|
puts "==============================================="
|
|
|
|
pload MODELING VISUALIZATION
|
|
|
|
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 {80 133}
|
|
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 {340 282}
|
|
set mouse_pick_2 {277 245}
|
|
set mouse_pick_3 {277 245}
|
|
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
|