824N/A/* dpspathops.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 DPSarc(DPSContext ctxt; float x, y, r, angle1, angle2)
824N/A x y r angle1 angle2 arc
824N/Aendps
824N/A
824N/Adefineps DPSarcn(DPSContext ctxt; float x, y, r, angle1, angle2)
824N/A x y r angle1 angle2 arcn
824N/Aendps
824N/A
824N/Adefineps DPSarct(DPSContext ctxt; float x1, y1, x2, y2, r)
824N/A x1 y1 x2 y2 r arct
824N/Aendps
824N/A
824N/Adefineps DPSarcto(DPSContext ctxt; float x1, y1, x2, y2, r | float *xt1, *yt1, *xt2, *yt2)
824N/A x1 y1 x2 y2 r arcto yt2 xt2 yt1 xt1
824N/Aendps
824N/A
824N/Adefineps DPScharpath(DPSContext ctxt; char *s; boolean b)
824N/A (s) b charpath
824N/Aendps
824N/A
824N/Adefineps DPSclip(DPSContext ctxt)
824N/A clip
824N/Aendps
824N/A
824N/Adefineps DPSclippath(DPSContext ctxt)
824N/A clippath
824N/Aendps
824N/A
824N/Adefineps DPSclosepath(DPSContext ctxt)
824N/A closepath
824N/Aendps
824N/A
824N/Adefineps DPScurveto(DPSContext ctxt; float x1, y1, x2, y2, x3, y3)
824N/A x1 y1 x2 y2 x3 y3 curveto
824N/Aendps
824N/A
824N/Adefineps DPSeoclip(DPSContext ctxt)
824N/A eoclip
824N/Aendps
824N/A
824N/Adefineps DPSeoviewclip(DPSContext ctxt)
824N/A eoviewclip
824N/Aendps
824N/A
824N/Adefineps DPSflattenpath(DPSContext ctxt)
824N/A flattenpath
824N/Aendps
824N/A
824N/Adefineps DPSinitclip(DPSContext ctxt)
824N/A initclip
824N/Aendps
824N/A
824N/Adefineps DPSinitviewclip(DPSContext ctxt)
824N/A initviewclip
824N/Aendps
824N/A
824N/Adefineps DPSlineto(DPSContext ctxt; float x, y)
824N/A x y lineto
824N/Aendps
824N/A
824N/Adefineps DPSmoveto(DPSContext ctxt; float x, y)
824N/A x y moveto
824N/Aendps
824N/A
824N/Adefineps DPSnewpath(DPSContext ctxt)
824N/A newpath
824N/Aendps
824N/A
824N/Adefineps DPSpathbbox(DPSContext ctxt | float *llx, *lly, *urx, *ury)
824N/A pathbbox ury urx lly llx
824N/Aendps
824N/A
824N/Adefineps DPSpathforall(DPSContext ctxt)
824N/A pathforall
824N/Aendps
824N/A
824N/Adefineps DPSrcurveto(DPSContext ctxt; float x1, y1, x2, y2, x3, y3)
824N/A x1 y1 x2 y2 x3 y3 rcurveto
824N/Aendps
824N/A
824N/Adefineps DPSrectclip(DPSContext ctxt; float x, y, w, h)
824N/A x y w h rectclip
824N/Aendps
824N/A
824N/Adefineps DPSrectviewclip(DPSContext ctxt; float x, y, w, h)
824N/A x y w h rectviewclip
824N/Aendps
824N/A
824N/Adefineps DPSreversepath(DPSContext ctxt)
824N/A reversepath
824N/Aendps
824N/A
824N/Adefineps DPSrlineto(DPSContext ctxt; float x, y)
824N/A x y rlineto
824N/Aendps
824N/A
824N/Adefineps DPSrmoveto(DPSContext ctxt; float x, y)
824N/A x y rmoveto
824N/Aendps
824N/A
824N/Adefineps DPSsetbbox(DPSContext ctxt; float llx, lly, urx, ury)
824N/A llx lly urx ury setbbox
824N/Aendps
824N/A
824N/Adefineps DPSsetucacheparams(DPSContext ctxt)
824N/A setucacheparams
824N/Aendps
824N/A
824N/Adefineps DPSuappend(DPSContext ctxt; char nums[n]; int n; char ops[l]; int l)
824N/A [(nums) (ops)] uappend
824N/Aendps
824N/A
824N/Adefineps DPSucache(DPSContext ctxt)
824N/A ucache
824N/Aendps
824N/A
824N/Adefineps DPSucachestatus(DPSContext ctxt)
824N/A ucachestatus
824N/Aendps
824N/A
824N/Adefineps DPSupath(DPSContext ctxt; boolean b)
824N/A b upath
824N/Aendps
824N/A
824N/Adefineps DPSviewclip(DPSContext ctxt)
824N/A viewclip
824N/Aendps
824N/A
824N/Adefineps DPSviewclippath(DPSContext ctxt)
824N/A viewclippath
824N/Aendps
824N/A