6.0

Table Of Contents
153
Syntax
sin( value ) measure value
Argument
valueMeasure value specifying the angle whose sine is returned.
Code Sample Example
This example draws a somewhat sinusoidal graph.
Example
moveto(0,0)
define(&i,integer,0)
for(&i,1,10,360)
lineto(cos(inttofloat((&i)/ 4)),sin(inttofloat(&i)))
endfor()
closepath()
StopJob (procedure)
Terminates execution of the document and returns control to the PostScript interpreter.
Syntax
stopjob()
Store (procedure)
Stores a string of characters on a specific line in the current data page.
Syntax
store( line, string )
Arguments
line — Integer value specifying the line on which to store the string.
string — String value to store in the data page.