[BACK]Return to rect.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / pari-2.2 / src / graph

Diff for /OpenXM_contrib/pari-2.2/src/graph/Attic/rect.h between version 1.1 and 1.2

version 1.1, 2001/10/02 11:17:07 version 1.2, 2002/09/11 07:26:57
Line 30  typedef struct PARI_plot {
Line 30  typedef struct PARI_plot {
 } PARI_plot;  } PARI_plot;
   
 extern PARI_plot pari_plot, pari_psplot;  extern PARI_plot pari_plot, pari_psplot;
   #ifdef BOTH_GNUPLOT_AND_X11
   extern PARI_plot pari_X11plot;
   #endif
   extern PARI_plot *pari_plot_engine;
   
 #define w_height (pari_plot.height)  #define w_height (pari_plot_engine->height)
 #define w_width (pari_plot.width)  #define w_width (pari_plot_engine->width)
 #define f_height (pari_plot.fheight)  #define f_height (pari_plot_engine->fheight)
 #define f_width (pari_plot.fwidth)  #define f_width (pari_plot_engine->fwidth)
 #define h_unit (pari_plot.hunit)  #define h_unit (pari_plot_engine->hunit)
 #define v_unit (pari_plot.vunit)  #define v_unit (pari_plot_engine->vunit)
 #define lmargin (f_width*10)  #define lmargin (f_width*10)
 #define rmargin (h_unit - 1)  #define rmargin (h_unit - 1)
 #define tmargin (v_unit - 1)  #define tmargin (v_unit - 1)
Line 255  extern  GEN     ploth(entree *ep, GEN a, GEN b, char *
Line 259  extern  GEN     ploth(entree *ep, GEN a, GEN b, char *
 extern  GEN     ploth2(entree *ep, GEN a, GEN b, char *ch, long prec);  extern  GEN     ploth2(entree *ep, GEN a, GEN b, char *ch, long prec);
 extern  GEN     plothmult(entree *ep, GEN a, GEN b, char *ch, long prec);  extern  GEN     plothmult(entree *ep, GEN a, GEN b, char *ch, long prec);
 extern  GEN     plothraw(GEN listx, GEN listy, long flag);  extern  GEN     plothraw(GEN listx, GEN listy, long flag);
 extern  GEN     plothsizes();  extern  GEN     plothsizes(void);
 extern  GEN     plothsizes_flag(long flag);  extern  GEN     plothsizes_flag(long flag);
 extern  void    postdraw(GEN list);  extern  void    postdraw(GEN list);
 extern  void    postdraw_flag(GEN list, long flag);  extern  void    postdraw_flag(GEN list, long flag);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>