home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
general
/
fractal
/
kaos.lha
/
fixptlib
/
fmap_user.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-01-15
|
258 b
|
19 lines
/*
### r forward iteration of the mapping ###
*/
fmap_user(x,r,dim)
int r,dim;
double x[];
{
int i,j;
extern double time,*t_v,*param;
extern int (*f_p)();
for(i=0;i<r;i++){
(int) f_p(t_v,1,x,param,time,dim);
for(j=0;j<dim;j++) x[j] = t_v[j];
}
}