factory/v2012/mandelbrot.html
changeset 83 228adcfd8f23
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/factory/v2012/mandelbrot.html	Fri Jan 06 00:02:26 2012 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +<p>
     1.5 +<!--<img src="images/world.png" alt="world map" height="280" width="100%" />
     1.6 +-->
     1.7 +<canvas id="mandelbrot" width="670" height="670" onclick="draw2(event);">
     1.8 +</canvas> 
     1.9 +<button onclick="draw(0, -2, 0, 0, 0);">Left</button>
    1.10 +<button onclick="draw(0, 2, 0, 0, 0);">Right</button>
    1.11 +<button onclick="draw(0, 0, -2, 0, 0)">Up</button>
    1.12 +<button onclick="draw(0, 0, 2, 0, 0);">Down</button>
    1.13 +<button onclick="draw(0, 0, 0, 2, 0);">Zoom in</button>
    1.14 +<button onclick="draw(0, 0, 0, -2, 0);">Zoom out</button>
    1.15 +<button onclick="draw(0, 0, 0, 0, -1);">Inc Resolution</button>
    1.16 +<button onclick="draw(0, 0, 0, 0, 1);">Dec Resolution</button>
    1.17 +<button onclick="draw(100, 0, 0, 0, 0);">Inc Iterations</button>
    1.18 +<button onclick="draw(-100, 0, 0, 0, 0);">Dec Iterations</button>
    1.19 +</p>