GINO Graphics Suite - GINOGRAF v9.5    

ggTransformSpacePoint

Syntax

[C/C++:]
void ggTransformSpacePoint(float xsp, float ysp, GPOINT *point);
[F90:]
subroutine ggTransformSpacePoint(xsp, ysp, point)

real, intent(in) :: xsp, ysp
type(GPOINT), intent(out) :: point

Arguments

xsp
Value giving the X part of the user space coordinates of a point

ysp
Value giving the Y part of the user space coordinates of a point

point.x
Returns a real value giving the X part of the graphical axes coordinates of a point, equivalent to xsp

point.y
Returns a real value giving the Y part of the graphical axes coordinates of a point, equivalent to ysp

Description

The routine ggTransformSpacePoint() converts the user space coordinates of a specified point (xsp, ysp) to graphical axes coordinates returned as point.x, point.y, defined with respect to the graphical axes system set up by ggSetAxesPos() and ggSetAxesScaling() or by one of the complete graph or chart routines.

See Also

ggTransformSpacePoint Usage
ggSetAxesPos
ggSetAxesScaling
ggTransformGraphPoint