WINDDISP
(Statement)
Draw a specified window.
WINDDISP <window number>
<window number>
Specifies the window number (0 to 511).
-
The reference point for window processing is determined by each image process instruction. Therefore, executing this statement after process instructions will display the window at a right position.
-
Just after a new window is set, the window reference point is set to X = 0 and Y = 0.
-
The screen to be drawn is the one set by VISSCREEN.
-
To execute this instruction, a µVision board (option) is required.
VISOVERLAY 1
|
'Display draw only screen number 0 on the monitor
|
VISSCREEN 1, 0, 1
|
'Instantaneously draw on draw screen number 0
|
WINDMAKE R, 1, 200, 200, 0, 2
|
'Create a rectangular window
|
WINDDISP 1
|
'Display the window (with the reference point of
'X=0 and Y=0)
|
VISHIST 1, 100, 100
|
'Execute histogram processing
|
WINDDISP 1
|
'Display the window (with the reference point of
'X=100 and Y=100)
|