インテル® Fortran コンパイラー 14.0 ユーザー・リファレンス・ガイド
Graphics Subroutines: Move the current graphics position to a specified point. No drawing occurs.
CALL MOVETO (x,y,t)
CALL MOVETO_W (wx,wy,wt)
x, y |
(Input) INTEGER(2). Viewport coordinates of the new graphics position. |
t |
(Output) Derived type xycoord. Viewport coordinates of the previous graphics position. The derived type xycoordis defined in IFQWIN.F90 as follows: TYPE xycoord INTEGER(2) xcoord ! x coordinate INTEGER(2) ycoord ! y coordinate END TYPE xycoord |
wx, wy |
(Input) REAL(8). Window coordinates of the new graphics position. |
wt |
(Output) Derived type wxycoord. Window coordinates of the previous graphics position. The derived type wxycoord is defined in IFQWIN.F90: TYPE wxycoord REAL(8) wx ! x window coordinate REAL(8) wy ! y window coordinate END TYPE wxycoord |