RosettaCodeData/Task/Kronecker-product-based-fractals/JavaScript/kronecker-product-based-fractals-2.js

12 lines
381 B
JavaScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<!-- 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>