GINO Graphics Suite - GINOGRAF v9.5  

ggTransformGraphPoint

Syntax

[C/C++:]
void ggTransformGraphPoint(float xgr, float ygr, GPOINT *point);
[F90:]
subroutine ggTransformGraphPoint(xgr, ygr, point)

real, intent(in) :: xgr, ygr
type(GPOINT), intent(out) :: point

Arguments

xgr
Value giving the X part of the graphical axes coordinates of a point

ygr
Value giving the Y part of the graphical axes coordinates of a point

point.x
Returns a real value giving the X part of the user space coordinates of a point, equivalent to xgr

point.y
Returns a real value giving the Y part of the user space coordinates of a point, equivalent to ygr

Description

The routine ggTransformGraphPoint() converts the graphical coordinates of a specified point (xgr, ygr), defined with respect to the graphical axes system set up by the last axis definition calls or by one of the axis-dependent Basic Complete Routines, to user space coordinates returned as point.x and point.y.

See Also

ggTransformGraphPoint Usage
ggTransformSpacePoint