-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (34 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GPUjs Fourier Series</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="container">
<ul class="examples">
<li class="example">
<h3># Random Symmetric Fourier Series</h3>
<p class="desc">
Plot the sum of a randomly generated (symmetric) fourier series (10 numbers) using the RealComplexSpace class which can track, plot and interpolate (make a line between)
complex numbers. This class also exports a util class named `Complex` for handling complex numbers.
</p>
<p>Made Using: <a href="https://github.com/HarshKhandeparkar/gpujs-real-renderer" class="class-name">GPUjs Real Renderer</a></p>
<canvas id="complex-canvas"></canvas> <br />
<button id="complex-render">Start Rendering</button>
<button id="complex-randomize">Randomize</button>
</li>
</ol>
</div>
<hr />
<footer>
<a href="https://github.com/HarshKhandeparkar/gpujs-real-renderer">Github</a> |
<a href="https://github.com/HarshKhandeparkar/gpujs-real-renderer/releases/latest">Latest Release</a>
</footer>
<script src="./gpu-browser.min.js"></script>
<script src="./gpujs-real-renderer-browser.min.js"></script>
<script src="./example.js"></script>
</body>
</html>