-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
42 lines (40 loc) · 1.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE 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="Visualization of exponential sums" />
<meta property="og:description" content="Exponential sums are plotted as sequence of partial sums" />
<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="Exponential sums are plotted as sequence of partial sums">
<meta name="keywords" content="exponential sum, visualization" />
<meta name="author" content="Andrei Kashcha">
<title>Exponential sums</title>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML">
</script>
<style>
body { padding: 0; margin: 0; background: #1B294A; position: absolute; top: 0; left: 0; overflow: hidden; width: 100%; height: 100%}
canvas {position: absolute;}
#scene-canvas {
left: 0;
top: 0;
width: 100%;
height: 100%;
position: absolute;
}
</style>
</head>
<body>
<canvas id='scene-canvas'></canvas>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>