home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InterCD 2000 June
/
june_2000.iso
/
WinCE
/
Application
/
BasiCE
/
GR_PLOT.UTL
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
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