home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d222
/
plplot.lha
/
Plplot
/
src
/
source.zoo
/
xform.c
< prev
Wrap
C/C++ Source or Header
|
1989-05-15
|
174b
|
12 lines
#include "plplot.h"
void xform(x,y,tx,ty)
float x, y, *tx, *ty;
{
extern float tr[];
*tx = tr[0]*x + tr[1]*y + tr[2];
*ty = tr[3]*x + tr[4]*y + tr[5];
}