-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.js
133 lines (107 loc) · 3.63 KB
/
example.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Fourier Series
const ComplexGraph = new GPUjsRealRenderer.RealComplexSpace({
canvas: document.getElementById('complex-canvas'),
xScaleFactor: 2,
yScaleFactor: 2,
brushSize: 1.5,
timeStep: 1 / 1000,
drawsPerFrame: 5,
lineThickness: 0.8,
lineColor: [0.8, 0, 0],
dimensions: [800, 800],
changeNumbers: (nums, time, timeStep) => {
if (nums.find(num => num.name == 'final')) nums[nums.findIndex(num => num.name == 'final')].number = new Complex(0, 0);
for (let i = window.complexLimits[0]; i <= window.complexLimits[1]; i++) {
if (nums.find(num => num.name == i)) {
const n = nums.find(num => num.name == i);
n.number = n.number.multiply(new Complex(1, n.attributes.period * timeStep));
nums[nums.findIndex(num => num.name == 'final')].number.add(n.number);
}
}
// let partialSum = new Complex(0, 0);
// for (let i = window.complexLimits[0]; i <= window.complexLimits[1]; i++) {
// if (nums.find(num => num.name == i)) {
// const newPartial = {
// name: `p${i}`,
// number: new Complex(partialSum.r, partialSum.theta),
// show: true,
// persistent: false,
// interpolate: true,
// interpolateTo: new Complex(partialSum.r, partialSum.theta).add(nums.find(num => num.name == i).number)
// }
// if (nums.find(num => num.name == `p${i}`)) nums[nums.findIndex(num => num.name == `p${i}`)] = newPartial;
// else nums.push(newPartial);
// partialSum.add(nums.find(num => num.name == i).number);
// }
// }
return nums;
}
})
window.ComplexGraph = ComplexGraph;
window.Complex = ComplexGraph.Complex;
// Random Nos
let clockwise = [];
let anticlockwise = [];
function generateRandomSeries(upperBound = 10) {
clockwise = [];
anticlockwise = [];
for (let i = 0; i <= upperBound; i++) {
clockwise.push(
new Complex(Math.random() * 100 / upperBound, Math.PI / 2/* * 2 * Math.random()*/)
)
}
for (let i = 0; i <= upperBound; i++) {
anticlockwise.push(
new Complex(Math.random() * 100 / upperBound, Math.PI / 2 /* * 2 * Math.random()*/)
)
}
}
generateRandomSeries();
const final = new Complex(0, 0);
window.complexLimits = [
-clockwise.length,
anticlockwise.length - 1
]
ComplexGraph
.draw()
.watch('final', final, true, true, false, null);
anticlockwise.forEach((num, i) => {
ComplexGraph.watch(`${i}`, num, false, false, false, null, {period: i})
})
clockwise.forEach((num, i) => {
ComplexGraph.watch(`${-i - 1}`, num, false, false, false, null, {period: -i - 1})
})
document.getElementById('complex-render').onclick = e => {
e.preventDefault();
if (ComplexGraph._doRender) {
ComplexGraph.stopRender();
document.getElementById('complex-render').innerText = 'Start Rendering';
}
else {
ComplexGraph.startRender();
document.getElementById('complex-render').innerText = 'Stop Rendering';
}
}
document.getElementById('complex-randomize').onclick = e => {
e.preventDefault();
ComplexGraph.stopRender().clearWatched().reset();
generateRandomSeries();
const final = new Complex(0, 0);
window.complexLimits = [
-clockwise.length,
anticlockwise.length - 1
]
ComplexGraph
.draw()
.watch('final', final, true, true, false, null);
anticlockwise.forEach((num, i) => {
ComplexGraph.watch(`${i}`, num, false, false, false, null, {period: i})
})
clockwise.forEach((num, i) => {
ComplexGraph.watch(`${-i - 1}`, num, false, false, false, null, {period: -i - 1})
})
setTimeout(() => {
ComplexGraph.startRender();
document.getElementById('complex-render').innerText = 'Stop Rendering';
}, 1000)
}