5e0d7126131a8c596306e9480d48fcfa59e4884d
braney
  Wed Apr 10 13:51:45 2019 -0700
add postscript filled circle primitive

diff --git src/inc/psGfx.h src/inc/psGfx.h
index 74c7a92..80b4fc2 100644
--- src/inc/psGfx.h
+++ src/inc/psGfx.h
@@ -110,17 +110,19 @@
 
 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);
 #endif /* PSGFX_H */