Mandelbrot

This commit is contained in:
rnentjes
2016-05-21 17:57:55 +02:00
commit b9a2210d31
8 changed files with 24273 additions and 0 deletions

24
web/index.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mandelbrot</title>
<style type="text/css">
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
position:absolute;
}
</style>
</head>
<body>
<script type="application/javascript" src="js/kotlin/kotlin.js"></script>
<script type="application/javascript" src="js/generated/mandelbrot.js"></script>
</body>
</html>