11 lines
381 B
JavaScript
11 lines
381 B
JavaScript
<!-- VicsekFractal.html -->
|
|
<html>
|
|
<head>
|
|
<title>Vicsek fractal</title>
|
|
<script src="KPF.js"></script>
|
|
</head>
|
|
<body onload="cpmat([[0,1,0],[1,1,1],[0,1,0]],6,'navy')">
|
|
<h3>Vicsek fractal</h3>
|
|
<a href="SierpCarpetFractal.html"> Next: Sierpinski carpet fractal</a><br />
|
|
<canvas id="canvId" width="750" height="750" style="border: 1px outset;"></canvas>
|
|
</body></html>
|