home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows CE - The Ultimate Companion
/
ROMMAN_CE.iso
/
Files
/
Programming
/
Basice
/
LIB
/
GR_PLOT.UTL
< prev
next >
Wrap
Text File
|
1997-03-14
|
243b
|
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