factory/v2012/experiments.html
changeset 71 bf0295436e1c
child 80 ba69edadfc4c
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/factory/v2012/experiments.html	Sat Dec 17 19:20:30 2011 +0100
     1.3 @@ -0,0 +1,15 @@
     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);"></canvas> 
     1.8 +<button onclick="draw(0, -2, 0, 0, 0);">Left</button>
     1.9 +<button onclick="draw(0, 2, 0, 0, 0);">Right</button>
    1.10 +<button onclick="draw(0, 0, -2, 0, 0)">Up</button>
    1.11 +<button onclick="draw(0, 0, 2, 0, 0);">Down</button>
    1.12 +<button onclick="draw(0, 0, 0, 2, 0);">Zoom in</button>
    1.13 +<button onclick="draw(0, 0, 0, -2, 0);">Zoom out</button>
    1.14 +<button onclick="draw(0, 0, 0, 0, -1);">Inc Resolution</button>
    1.15 +<button onclick="draw(0, 0, 0, 0, 1);">Dec Resolution</button>
    1.16 +<button onclick="draw(100, 0, 0, 0, 0);">Inc Iterations</button>
    1.17 +<button onclick="draw(-100, 0, 0, 0, 0);">Dec Iterations</button>
    1.18 +</p>