a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/psGfx.c src/lib/psGfx.c index c7b1b8c..58fc56e 100644 --- src/lib/psGfx.c +++ src/lib/psGfx.c @@ -1,26 +1,25 @@ /* PostScript graphics - * This provides a bit of a shell around writing graphics to * a postScript file. Perhaps the most important thing it * does is convert 0,0 from being at the bottom left to * being at the top left. */ #include "common.h" #include "psPoly.h" #include "psGfx.h" #include "linefile.h" -static char const rcsid[] = "$Id: psGfx.c,v 1.34 2008/05/19 21:56:23 braney Exp $"; static void psFloatOut(FILE *f, double x) /* Write out a floating point number, but not in too much * precision. */ { int i = round(x); if (i == x) fprintf(f, "%d ", i); else fprintf(f, "%0.4f ", x); } void psClipRect(struct psGfx *ps, double x, double y, double width, double height) /* Set clipping rectangle. */