00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include "/home/wso/include/plot.h"
00013 #include <stdtime.h>
00014
00015 PFILE *openplot();
00016 PFILE *initplot();
00017 PFILE *openinitplot();
00018 int addplot();
00019
00020
00021
00022 #define beginp(a) beginplot(stdplt,a)
00023 #define defp(a,b,c,d) defplot(stdplt,a,b,c,d)
00024 #define drawp(a,b,c) drawplot(stdplt,a,b,c)
00025 #define endp() endplot(stdplt)
00026 #define gridp(a,b,c,d) gridplot(stdplt,a,b,c,d)
00027 #define pointp(a,b,c) lineplot(stdplt,a,b,a,b,c)
00028 #define linep(a,b,c,d,e) lineplot(stdplt,a,b,c,d,e)
00029 #define modep(a) modeplot(stdplt,a)
00030 #define movep(a,b,c) moveplot(stdplt,a,b,c)
00031 #define setp(a,b,c,d) setplot(stdplt,a,b,c,d)
00032 #define getp(a,b,c) getplot(stdplt,a,b,c)
00033 #define addp(a) addplot(stdplt,a)
00034 #define setstd(P) setplot(P,P->p_xsize/8.0,P->p_ysize/8.0,\
00035 P->p_xsize*0.75,P->p_ysize*0.75)
00036 #define marginplot(P,L,B,R,T) setplot(P,L,B,P->p_xsize-R,P->p_ysize-T)