r59: First functional version of SDF library for X-window
[ctsim.git] / include / ezplot.h
index 988c0534e5d02a3d04f7e801c6fda61c8c25405a..4494f01470613349566cc8a1e5f922588867fe5a 100644 (file)
@@ -2,8 +2,11 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ezplot.h,v 1.3 2000/05/07 12:46:19 kevin Exp $
+**  $Id: ezplot.h,v 1.4 2000/05/24 22:48:17 kevin Exp $
 **  $Log: ezplot.h,v $
+**  Revision 1.4  2000/05/24 22:48:17  kevin
+**  First functional version of SDF library for X-window
+**
 **  Revision 1.3  2000/05/07 12:46:19  kevin
 **  made c++ compatible
 **
@@ -326,16 +329,20 @@ extern bool ezplot_firstcall;   /* set to false on first call to EZSET or EZPLOT
 
 
 /* axis.c */
-int axis_scale(double min, double max, int nint, double *minp, double *maxp, int *nintp);
+int axis_scale (double min, double max, int nint, double *minp, double *maxp, int *nintp);
+
 /* ezplot.c */
-int ezplot(double x[], double y[], int num);
+SGP_ID ezplot(double x[], double y[], int num);
 void ezinit(void);
 void ezfree(void);
 void ezclear(void);
+
 /* ezplot1d.c */
 void ezplot_1d(double *y, int n);
+
 /* ezset.c */
 int ezset(char *command);
+
 /* makefmt.c */
 void make_numfmt(char *fmtstr, int *fldwid, int *nfrac, double min, double max, int nint);