home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
prog_c
/
plplot.lzh
/
PLPLOT
/
PLPLOT.LZH
/
plplot
/
src
/
setpxl.c
< 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
C/C++ Source or Header
|
1990-03-23
|
247 b
|
14 lines
/* Sets up pixel size from the number of pixels/mm in each direction */
#include "plplot.h"
#include "declare.h"
void setpxl(xpmm0,ypmm0)
PLFLT xpmm0,ypmm0;
{
xpmm = xpmm0;
ypmm = ypmm0;
umx = 1000.0/xpmm;
umy = 1000.0/ypmm;
}