home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InterCD 2000 August
/
augusty_2000.iso
/
Windows-CE
/
Applications
/
basice
/
GR_PLOT.UTL
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1997-07-08
|
243 b
|
12 lines
procedure gr_plot(x#,y#,pen%)
gr_ux% = gr_scalex(x#)
gr_uy% = gr_scaley(y#)
if pen% then
call line(gr_curx%,gr_cury%,gr_ux%,gr_uy%)
endif
gr_curx# = x#
gr_curx% = gr_ux%
gr_cury# = y#
gr_cury% = gr_uy%
endproc