76b7f51a5be7d26bc0638b123ad4fd3d61d8406c braney Wed May 29 10:54:02 2019 -0700 postscript output was missing the ability to outline circles. Now it works! diff --git src/inc/psGfx.h src/inc/psGfx.h index 80b4fc2..5c830a5 100644 --- src/inc/psGfx.h +++ src/inc/psGfx.h @@ -111,18 +111,18 @@ void psDrawCurve(struct psGfx *ps, double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4); /* Draw Bezier curve specified by 4 points: first (p1) and last (p4) * and 2 control points (p2, p3) */ void psSetDash(struct psGfx *ps, boolean on); /* Set dashed line mode on or off. If set on, show two points marked, with one point of space */ char * convertEpsToPdf(char *epsFile); /* Convert EPS to PDF and return filename, or NULL if failure. */ void psLineTo(struct psGfx *ps, double x, double y); /* Draw line from current point to given point, * and make given point new current point. */ -void psFillCircle(struct psGfx *ps, double x, double y, double rad); +void psCircle(struct psGfx *ps, double x, double y, double rad, boolean filled); #endif /* PSGFX_H */