implement Graph0; include "sys.m"; sys: Sys; print: import sys; include "draw.m"; include "tk.m"; tk: Tk; include "bufio.m"; bufio: Bufio; Iobuf: import bufio; include "gr.m"; gr: GR; Plot: import gr; Graph0: module{ init: fn(nil: ref Draw->Context, argv: list of string); }; plotfile(ctxt: ref Draw->Context, nil: list of string, filename: string){ p := gr->open(ctxt,filename); input := bufio->open(filename,bufio->OREAD); if(input==nil){ print("can't read %s",filename); exit; } n := 0; maxn := 100; x := array[maxn] of real; y := array[maxn] of real; while(1){ xn := input.gett(" \t\n\r"); if(xn==nil) break; yn := input.gett(" \t\n\r"); if(yn==nil){ print("after reading %d pairs, saw singleton\n",n); exit; } if(n>=maxn){ maxn *= 2; newx := array[maxn] of real; newy := array[maxn] of real; for(i:=0; iCIRCLE); p.graph(x[0:n],y[0:n]); p.paint("",nil,"",nil); p.bye(); } init(ctxt: ref Draw->Context, argv: list of string){ sys = load Sys Sys->PATH; tk = load Tk Tk->PATH; bufio = load Bufio Bufio->PATH; if((gr = load GR GR->PATH) == nil){ sys->print("%s: Can't load gr\n",hd argv); exit; } argv = tl argv; if(argv!=nil) plotfile(ctxt,argv,hd argv); }