factory/v2011/experiments.html
author Eugen Sawin <sawine@me73.com>
Sun, 18 Dec 2011 19:15:59 +0100
changeset 76 681b1d7dc3a9
parent 31 837078f56ae2
permissions -rw-r--r--
Prettier lines.
sawine@31
     1
<p>
sawine@31
     2
<!--<img src="images/world.png" alt="world map" height="280" width="100%" />
sawine@31
     3
-->
sawine@67
     4
<canvas id="mandelbrot" width="670" height="670" onclick="draw2(event);"></canvas> 
sawine@31
     5
<button onclick="draw(0, -2, 0, 0, 0);">Left</button>
sawine@31
     6
<button onclick="draw(0, 2, 0, 0, 0);">Right</button>
sawine@31
     7
<button onclick="draw(0, 0, -2, 0, 0)">Up</button>
sawine@31
     8
<button onclick="draw(0, 0, 2, 0, 0);">Down</button>
sawine@31
     9
<button onclick="draw(0, 0, 0, 2, 0);">Zoom in</button>
sawine@31
    10
<button onclick="draw(0, 0, 0, -2, 0);">Zoom out</button>
sawine@31
    11
<button onclick="draw(0, 0, 0, 0, -1);">Inc Resolution</button>
sawine@31
    12
<button onclick="draw(0, 0, 0, 0, 1);">Dec Resolution</button>
sawine@31
    13
<button onclick="draw(100, 0, 0, 0, 0);">Inc Iterations</button>
sawine@31
    14
<button onclick="draw(-100, 0, 0, 0, 0);">Dec Iterations</button>
sawine@31
    15
</p>