824N/A/* psgsttops.psw
824N/A *
824N/A * (c) Copyright 1988-1994 Adobe Systems Incorporated.
824N/A * All rights reserved.
824N/A *
824N/A * Permission to use, copy, modify, distribute, and sublicense this software
824N/A * and its documentation for any purpose and without fee is hereby granted,
824N/A * provided that the above copyright notices appear in all copies and that
824N/A * both those copyright notices and this permission notice appear in
824N/A * supporting documentation and that the name of Adobe Systems Incorporated
824N/A * not be used in advertising or publicity pertaining to distribution of the
824N/A * software without specific, written prior permission. No trademark license
824N/A * to use the Adobe trademarks is hereby granted. If the Adobe trademark
824N/A * "Display PostScript"(tm) is used to describe this software, its
824N/A * functionality or for any other purpose, such use shall be limited to a
824N/A * statement that this software works in conjunction with the Display
824N/A * PostScript system. Proper trademark attribution to reflect Adobe's
824N/A * ownership of the trademark shall be given whenever any such reference to
824N/A * the Display PostScript system is made.
824N/A *
824N/A * ADOBE MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THE SOFTWARE FOR
824N/A * ANY PURPOSE. IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY.
824N/A * ADOBE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
824N/A * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
824N/A * NON- INFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL ADOBE BE LIABLE
824N/A * TO YOU OR ANY OTHER PARTY FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL
824N/A * DAMAGES OR ANY DAMAGES WHATSOEVER WHETHER IN AN ACTION OF CONTRACT,
824N/A * NEGLIGENCE, STRICT LIABILITY OR ANY OTHER ACTION ARISING OUT OF OR IN
824N/A * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ADOBE WILL NOT
824N/A * PROVIDE ANY TRAINING OR OTHER SUPPORT FOR THE SOFTWARE.
824N/A *
824N/A * Adobe, PostScript, and Display PostScript are trademarks of Adobe Systems
824N/A * Incorporated which may be registered in certain jurisdictions
824N/A *
824N/A * Author: Adobe Systems Incorporated
824N/A */
824N/A
824N/Adefineps PSconcat(float m[6])
824N/A m concat
824N/Aendps
824N/A
824N/Adefineps PScurrentdash()
824N/A currentdash
824N/Aendps
824N/A
824N/Adefineps PScurrentflat( | float *flatness)
824N/A currentflat flatness
824N/Aendps
824N/A
824N/Adefineps PScurrentgray( | float *gray)
824N/A currentgray gray
824N/Aendps
824N/A
824N/Adefineps PScurrentgstate(userobject gst)
824N/A gst currentgstate
824N/Aendps
824N/A
824N/Adefineps PScurrenthalftone()
824N/A currenthalftone
824N/Aendps
824N/A
824N/Adefineps PScurrenthalftonephase( | float *x, *y)
824N/A currenthalftonephase y x
824N/Aendps
824N/A
824N/Adefineps PScurrenthsbcolor( | float *h, *s, *b)
824N/A currenthsbcolor b s h
824N/Aendps
824N/A
824N/Adefineps PScurrentlinecap( | int *linecap)
824N/A currentlinecap linecap
824N/Aendps
824N/A
824N/Adefineps PScurrentlinejoin( | int *linejoin)
824N/A currentlinejoin linejoin
824N/Aendps
824N/A
824N/Adefineps PScurrentlinewidth( | float *width)
824N/A currentlinewidth width
824N/Aendps
824N/A
824N/Adefineps PScurrentmatrix()
824N/A currentmatrix
824N/Aendps
824N/A
824N/Adefineps PScurrentmiterlimit( | float *limit)
824N/A currentmiterlimit limit
824N/Aendps
824N/A
824N/Adefineps PScurrentpoint( | float *x, *y)
824N/A currentpoint y x
824N/Aendps
824N/A
824N/Adefineps PScurrentrgbcolor( | float *r, *g, *b)
824N/A currentrgbcolor b g r
824N/Aendps
824N/A
824N/Adefineps PScurrentscreen()
824N/A currentscreen
824N/Aendps
824N/A
824N/Adefineps PScurrentstrokeadjust( | boolean *b)
824N/A currentstrokeadjust b
824N/Aendps
824N/A
824N/Adefineps PScurrenttransfer()
824N/A currenttransfer
824N/Aendps
824N/A
824N/Adefineps PSdefaultmatrix()
824N/A defaultmatrix
824N/Aendps
824N/A
824N/Adefineps PSgrestore()
824N/A grestore
824N/Aendps
824N/A
824N/Adefineps PSgrestoreall()
824N/A grestoreall
824N/Aendps
824N/A
824N/Adefineps PSgsave()
824N/A gsave
824N/Aendps
824N/A
824N/Adefineps PSgstate()
824N/A gstate
824N/Aendps
824N/A
824N/Adefineps PSinitgraphics()
824N/A initgraphics
824N/Aendps
824N/A
824N/Adefineps PSinitmatrix()
824N/A initmatrix
824N/Aendps
824N/A
824N/Adefineps PSrotate(float angle)
824N/A angle rotate
824N/Aendps
824N/A
824N/Adefineps PSscale(float x, y)
824N/A x y scale
824N/Aendps
824N/A
824N/Adefineps PSsetdash(float pat[size]; int size; float offset)
824N/A pat offset setdash
824N/Aendps
824N/A
824N/Adefineps PSsetflat(float flatness)
824N/A flatness setflat
824N/Aendps
824N/A
824N/Adefineps PSsetgray(float gray)
824N/A gray setgray
824N/Aendps
824N/A
824N/Adefineps PSsetgstate(userobject gst)
824N/A gst setgstate
824N/Aendps
824N/A
824N/Adefineps PSsethalftone()
824N/A sethalftone
824N/Aendps
824N/A
824N/Adefineps PSsethalftonephase(float x, y)
824N/A x y sethalftonephase
824N/Aendps
824N/A
824N/Adefineps PSsethsbcolor(float h, s, b)
824N/A h s b sethsbcolor
824N/Aendps
824N/A
824N/Adefineps PSsetlinecap(int linecap)
824N/A linecap setlinecap
824N/Aendps
824N/A
824N/Adefineps PSsetlinejoin(int linejoin)
824N/A linejoin setlinejoin
824N/Aendps
824N/A
824N/Adefineps PSsetlinewidth(float width)
824N/A width setlinewidth
824N/Aendps
824N/A
824N/Adefineps PSsetmatrix()
824N/A setmatrix
824N/Aendps
824N/A
824N/Adefineps PSsetmiterlimit(float limit)
824N/A limit setmiterlimit
824N/Aendps
824N/A
824N/Adefineps PSsetrgbcolor(float r, g, b)
824N/A r g b setrgbcolor
824N/Aendps
824N/A
824N/Adefineps PSsetscreen()
824N/A setscreen
824N/Aendps
824N/A
824N/Adefineps PSsetstrokeadjust(boolean b)
824N/A b setstrokeadjust
824N/Aendps
824N/A
824N/Adefineps PSsettransfer()
824N/A settransfer
824N/Aendps
824N/A
824N/Adefineps PStranslate(float x, y)
824N/A x y translate
824N/Aendps
824N/A