Category : C Source Code
Archive   : WINSRC17.ZIP
Filename : TESTPT.C

 
Output of file : TESTPT.C contained in archive : WINSRC17.ZIP
/*

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.

*/

extern int xdots; /* the screen is this many dots across */
extern int ydots; /* the screen is this many dots down */
extern int colors; /* the screen has this many colors */

void teststart() /* this routine is called just before the fractal starts */
{
}

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 */

testpt(initreal,initimag,parm1,parm2,maxit,inside)
double initreal,initimag,parm1,parm2;
int maxit,inside;
{
double oldreal, oldimag, newreal, newimag, magnitude;
int 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(color);
}


  3 Responses to “Category : C Source Code
Archive   : WINSRC17.ZIP
Filename : TESTPT.C

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/