@anvaka/streamlines
Version:
Streamlines calculator
33 lines (31 loc) • 1.58 kB
HTML
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TXT6313TGG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TXT6313TGG');
</script>
<meta property="og:title" content="Streamlines of a vector field, Math and Art." />
<meta property="og:description" content="This is just a demo for a streamlines calculation library" />
<meta charset="utf-8">
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no'>
<meta name="Description" content="This website allows you to build and explore streamlines of any vector field.">
<meta name="keywords" content="vector field, visualization, generative art, visualizations, streamlines, particles" />
<meta name="author" content="Andrei Kashcha">
<title>anvaka/streamlines demo</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M1 8c4-6 10-6 14 0-4 6-10 6-14 0z'/%3E%3C/svg%3E" />
<style>
body { padding: 0; margin: 0; background: #1B294A; position: absolute; top: 0; left: 0; overflow: hidden; width: 100%; height: 100%}
canvas {position: absolute;}
</style>
</head>
<body>
<canvas id='scene-canvas'></canvas>
<div id="app"></div>
<script type="module" src="/src/nativeMain.js"></script>
</body>
</html>