-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathbuild.js
93 lines (93 loc) · 3.24 KB
/
build.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
var ColorHelper = (function () {
function ColorHelper() {
}
ColorHelper.getColorVector = function (c) {
return createVector(red(c), green(c), blue(c));
};
ColorHelper.rainbowColorBase = function () {
return [
color('red'),
color('orange'),
color('yellow'),
color('green'),
color(38, 58, 150),
color('indigo'),
color('violet')
];
};
ColorHelper.getColorsArray = function (total, baseColorArray) {
var _this = this;
if (baseColorArray === void 0) { baseColorArray = null; }
if (baseColorArray == null) {
baseColorArray = ColorHelper.rainbowColorBase();
}
var rainbowColors = baseColorArray.map(function (x) { return _this.getColorVector(x); });
;
var colours = new Array();
for (var i = 0; i < total; i++) {
var colorPosition = i / total;
var scaledColorPosition = colorPosition * (rainbowColors.length - 1);
var colorIndex = Math.floor(scaledColorPosition);
var colorPercentage = scaledColorPosition - colorIndex;
var nameColor = this.getColorByPercentage(rainbowColors[colorIndex], rainbowColors[colorIndex + 1], colorPercentage);
colours.push(color(nameColor.x, nameColor.y, nameColor.z));
}
return colours;
};
ColorHelper.getColorByPercentage = function (firstColor, secondColor, percentage) {
var firstColorCopy = firstColor.copy();
var secondColorCopy = secondColor.copy();
var deltaColor = secondColorCopy.sub(firstColorCopy);
var scaledDeltaColor = deltaColor.mult(percentage);
return firstColorCopy.add(scaledDeltaColor);
};
return ColorHelper;
}());
var PolygonHelper = (function () {
function PolygonHelper() {
}
PolygonHelper.draw = function (numberOfSides, width) {
push();
var angle = TWO_PI / numberOfSides;
var radius = width / 2;
beginShape();
for (var a = 0; a < TWO_PI; a += angle) {
var sx = cos(a) * radius;
var sy = sin(a) * radius;
vertex(sx, sy);
}
endShape(CLOSE);
pop();
};
return PolygonHelper;
}());
var numberOfShapesControl;
function setup() {
console.log("🚀 - Setup initialized - P5 is running");
createCanvas(windowWidth, windowHeight);
rectMode(CENTER).noFill().frameRate(30);
numberOfShapesControl = createSlider(1, 30, 15, 1).position(10, 10).style("width", "100px");
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}
function draw() {
background(0);
translate(width / 2, height / 2);
var numberOfShapes = numberOfShapesControl.value();
var colours = ColorHelper.getColorsArray(numberOfShapes);
var speed = (frameCount / (numberOfShapes * 30)) * 2;
for (var i = 0; i < numberOfShapes; i++) {
push();
var lineWidth = 8;
var spin = speed * (numberOfShapes - i);
var numberOfSides = 3 + i;
var width_1 = 40 * i;
strokeWeight(lineWidth);
stroke(colours[i]);
rotate(spin);
PolygonHelper.draw(numberOfSides, width_1);
pop();
}
}
//# sourceMappingURL=build.js.map