SETVIEWORG (W*32)

Graphics Subroutine: Moves the viewport-coordinate origin (0, 0) to the specified physical point.

Module

USE IFQWIN

構文

CALL SETVIEWORG (x,y,t)

x, y

(Input) INTEGER(2). Physical coordinates of new viewport origin.

t

(Output) Derived type xycoord. Physical coordinates of the previous viewport origin. 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

The xycoordtype variable t, defined in IFQWIN.F90, returns the physical coordinates of the previous viewport origin.

Compatibility

STANDARD GRAPHICS QUICKWIN GRAPHICS LIB

 USE IFQWIN
 TYPE ( xycoord ) xy

 CALL SETVIEWORG(INT2(30), INT2(30), xy)

関連情報


このヘルプトピックについてのフィードバックを送信

© 1996-2011 Intel Corporation. 無断での引用、転載を禁じます。