GSPLYM(3g,L) AIX Technical Reference GSPLYM(3g,L)
-------------------------------------------------------------------------------
gsplym
PURPOSE
Draws a polymarker, a marker at each of a set of specified points.
C SYNTAX
int gsplym_ (number, x, y)
int *number, *x, *y;
FORTRAN SYNTAX
INTEGER function gsplym (number, x, y)
INTEGER number, x (*), y (*)
PASCAL SYNTAX
FUNCTION gsplym_ (
VAR number: INTEGER;
VAR x, y: ARRAY [1..k] of INTEGER
): INTEGER [PUBLIC];
DESCRIPTION
The gsplym subroutine places a marker, defined by the current relevant
attributes, at each point defined by the parameters.
The relevant attributes are:
o Color map
o Plane mask
o Logical operation
o Polymarker color index
o Polymarker style index.
Parameters
number Defines the number of points in the coordinate arrays. It
must be => 1.
x, y Defines, as coordinate arrays, the location where the origin
of each polymarker is placed.
Processed November 7, 1990 GSPLYM(3g,L) 1
GSPLYM(3g,L) AIX Technical Reference GSPLYM(3g,L)
For Pascal, the application must declare the arrays passed as being fixed
length and declare the routine as accepting arrays of that length. The k in
the routine declaration must be a constant.
RETURN VALUE
GS_SUCC Successful.
GS_CORD Invalid coordinate.
GS_NCOR Invalid number of coordinates.
Processed November 7, 1990 GSPLYM(3g,L) 2