COMP1511 18s2

Mandelbrot Art Gallery - Submitting Your Tile

Check out the MandelbrArt Gallery!

You've created your Mandelbrot server, you've got the technical side of things working... now it's time to actually use your code, and to exercise your aesethetic senses.

Find/create the most beautiful colored tile from the Mandelbrot set that you can. Submit your pixelColor.c file from the Mandelbrot activity AND also the file xanadu.h (sample below) which defines the x y and z coordinates for your tile.


/*
 * xanadu.h
 * Defines the centre of your beautiful colored tile image of the
 * Mandelbrot set.
 * Your name here:
 * Your description here:
 */

// Replace these three values with your own chosen numbers
#define CENTER_X 1.0
#define CENTER_Y 0.0
#define ZOOM 9

We'll regenerate the tile using your code, and display them in the MandelbrArt Gallery.

Note that you can submit as many times as you want, but only your latest submission will be displayed in the gallery (so don't be afraid to experiment!).

Don't forget to also submit your pixelColor.c, so that we can re-generate the tile using your color scheme.

You can submit your work to the gallery by running give:

give cs1511 wk07_mandelbrotBeauty xanadu.h pixelColor.c