home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume1
/
8710
/
14
/
factor.f
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1990-07-13
|
355 b
|
17 lines
subroutine factor (f)
real f
C
C sets plot sizing factor -
C if f = 2.0 then all subsequent pen movements will be twice normal size
C if f is reset to 1.0, all plotting returns to normal size
C
common /cqpbnf/ xold, yold, fac, ires
save /cqpbnf/
real xold, yold, fac
integer ires
fac = f
return
end