strip down the scriptaculous javascript code to a bare minimum, and rewrite tiles.js as tiles2.js - uses Classes, so the code is a lot neater. Still a couple bugs to work out, but mostly works
committer: Tero Marttila <terom@fixme.fi>
#include "render.h"
/*
* the mandelbrot-rendering algorithm
*/
/*
* return codes for mandelbrot_render
*/
#define MANDELBROT_OK 0
#define MANDELBROT_ERR 1
/*
* Render the image specified by the given render context
*/
int render_mandelbrot (struct render *ctx);