home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computerworld 1996 March
/
Computerworld_1996-03_cd.bin
/
idg_cd3
/
grafika
/
fraktaly
/
frasr192
/
testpt.c
< prev
next >
Wrap
Text File
|
1994-08-18
|
2KB
|
55 lines
/*
Write your fractal program here. initreal and initimag are the values in
the complex plane; parm1, and parm2 are paramaters to be entered with the
"params=" option (if needed). The function should return the color associated
with initreal and initimag. FRACTINT will repeatedly call your function with
the values of initreal and initimag ranging over the rectangle defined by the
"corners=" option. Assuming your formula is iterative, "maxit" is the maximum
iteration. If "maxit" is hit, color "inside" should be returned.
Note that this routine could be sped up using external variables/arrays
rather than the current parameter-passing scheme. The goal, however was
to make it as easy as possible to add fractal types, and this looked like
the easiest way.
This module is part of an overlay, with calcfrac.c. The routines in it
must not be called by any part of Fractint other than calcfrac.
The sample code below is a straightforward Mandelbrot routine.
*/
int teststart() /* this routine is called just before the fractal starts */
{
return( 0 );
}
void testend() /* this routine is called just after the fractal ends */
{
}
/* this routine is called once for every pixel */
/* (note: possibly using the dual-pass / solif-guessing options */
int testpt(double initreal,double initimag,double parm1,double parm2,
long maxit,int inside)
{
double oldreal, oldimag, newreal, newimag, magnitude;
long color;
oldreal=parm1;
oldimag=parm2;
magnitude = 0.0;
color = 0;
while ((magnitude < 4.0) && (color < maxit)) {
newreal = oldreal * oldreal - oldimag * oldimag + initreal;
newimag = 2 * oldreal * oldimag + initimag;
color++;
oldreal = newreal;
oldimag = newimag;
magnitude = newreal * newreal + newimag * newimag;
}
if (color >= maxit) color = inside;
return((int)color);
}