mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
- TKIVtkDraw toolkit provides IVtk packages functionality in DRAW. - it allows to create VTK interactive view in regular or virtual mode (virtual windows), display OCC objects and dump them. - TKIVtkDraw provides also test commands: ivtlinit, ivtkdisplay, ivtkerase, ivtksetdispmode, ivtksetselmode, ivtkmoveto, ivtkselect, ivtkfit, ivtkdump, ivtkbgcolor. Corrected offscreen rendering mode. Moved vinit command from /v3d/begin script to avoid unused occ view in ivtk tests.
25 lines
520 B
Plaintext
25 lines
520 B
Plaintext
puts "============"
|
|
puts "erase"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################
|
|
# Tests erasing of shapes in the IVtk view
|
|
#######################################################
|
|
|
|
set anImage1 $imagedir/${casename}_before.png
|
|
set anImage2 $imagedir/${casename}_oneErased.png
|
|
set anImage3 $imagedir/${casename}_allErased.png
|
|
|
|
ivtkinit
|
|
box b1 1 1 1
|
|
box b2 3 3 3 1 1 1
|
|
ivtkdisplay b1 b2
|
|
ivtkdump $anImage1
|
|
|
|
ivtkerase b1
|
|
ivtkdump $anImage2
|
|
|
|
ivtkdisplay b1
|
|
ivtkerase
|
|
ivtkdump $anImage3
|