X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=include%2Fezplot.h;h=4494f01470613349566cc8a1e5f922588867fe5a;hb=a62ba7c54d39fcf1e469c8df169018fa60ae7c3b;hp=26a4c34c09ae15e4bdfb94633c6df8233c2c4d76;hpb=8fc6888d2599bb288f8ff7008994f2b66ecf6d93;p=ctsim.git diff --git a/include/ezplot.h b/include/ezplot.h index 26a4c34..4494f01 100644 --- a/include/ezplot.h +++ b/include/ezplot.h @@ -2,8 +2,14 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ezplot.h,v 1.2 2000/04/28 14:14:16 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 +** ** Revision 1.2 2000/04/28 14:14:16 kevin ** *** empty log message *** ** @@ -29,6 +35,11 @@ #ifndef __H_EZPLOT #define __H_EZPLOT +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + + #include #include #include "kstddef.h" @@ -318,17 +329,26 @@ 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); +#ifdef __cplusplus +} +#endif /* __cplusplus */ + + #endif