forked from mitxela/plotterfun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
squiggle.js
40 lines (32 loc) · 1.18 KB
/
squiggle.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
importScripts('helpers.js')
postMessage(['sliders', defaultControls.concat([
{label: 'Frequency', value: 150, min: 5, max: 256},
{label: 'Line Count', value: 50, min: 10, max: 200},
{label: 'Amplitude', value: 1, min: 0.1, max: 5, step: 0.1},
{label: 'Sampling', value: 1, min: 0.5, max: 2.9, step: 0.1},
{label: 'Modulation', type:'select', value:'both', options:['both', 'AM', 'FM']}
])]);
onmessage = function(e) {
const [ config, pixData ] = e.data;
const getPixel = pixelProcessor(config, pixData)
const lineCount = config['Line Count'];
const amplitude = config.Amplitude;
const frequency = config.Frequency;
const incr_x = config.Sampling;
const incr_y = Math.floor(config.height / lineCount);
const AM = (config.Modulation!="FM");
const FM = (config.Modulation!="AM");
let squiggleData = [];
for (let y = 0; y < config.height; y += incr_y) {
let a = 0;
let line = [];
for (let x = 0; x <= config.width; x += incr_x) {
let z = getPixel(x, y)
let r = amplitude * ( AM ? z:255) / lineCount;
a += ( FM ? z:255) / frequency;
line.push([x, y + Math.sin(a)*r]);
}
squiggleData.push(line)
}
postLines(squiggleData);
}