factory/v2012/mandelbrot.html
author Eugen Sawin <sawine@me73.com>
Tue, 07 Feb 2012 22:24:41 +0100
changeset 106 b473a1e68fff
permissions -rw-r--r--
Added missing quote file.
sawine@83
     1
<p>
sawine@83
     2
<!--<img src="images/world.png" alt="world map" height="280" width="100%" />
sawine@83
     3
-->
sawine@83
     4
<canvas id="mandelbrot" width="670" height="670" onclick="draw2(event);">
sawine@83
     5
</canvas> 
sawine@83
     6
<button onclick="draw(0, -2, 0, 0, 0);">Left</button>
sawine@83
     7
<button onclick="draw(0, 2, 0, 0, 0);">Right</button>
sawine@83
     8
<button onclick="draw(0, 0, -2, 0, 0)">Up</button>
sawine@83
     9
<button onclick="draw(0, 0, 2, 0, 0);">Down</button>
sawine@83
    10
<button onclick="draw(0, 0, 0, 2, 0);">Zoom in</button>
sawine@83
    11
<button onclick="draw(0, 0, 0, -2, 0);">Zoom out</button>
sawine@83
    12
<button onclick="draw(0, 0, 0, 0, -1);">Inc Resolution</button>
sawine@83
    13
<button onclick="draw(0, 0, 0, 0, 1);">Dec Resolution</button>
sawine@83
    14
<button onclick="draw(100, 0, 0, 0, 0);">Inc Iterations</button>
sawine@83
    15
<button onclick="draw(-100, 0, 0, 0, 0);">Dec Iterations</button>
sawine@83
    16
</p>