-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsketch.js
173 lines (153 loc) · 3.95 KB
/
sketch.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Daniel Shiffman
// http://codingtra.in
// Islamic Star Patterns
// Video: https://youtu.be/sJ6pMLp_IaI
// Based on: http://www.cgl.uwaterloo.ca/csk/projects/starpatterns/
// var poly;
var polys = [];
var angle = 75;
var delta = 10;
var deltaSlider;
var angleSlider;
var angleSliderIncrease;
var deltaSliderIncrease;
var cycleSlider;
var tilingTypeSelect;
var gridCheck;
function setup() {
var canvas = createCanvas(400, 400);
canvas.parent('canvasContainer');
// angleMode(DEGREES);
background(51);
deltaSlider = select('#delta');
angleSlider = select('#angle');
levelSlider = select('#level');
tilingTypeSelect = select('#tiling');
tilingTypeSelect.changed(chooseTiling);
gridCheck = select('#showGrid');
angleSliderIncrease = select('#angleIncrease');
deltaSliderIncrease = select('#deltaIncrease');
cycleSlider = select('#cycleIncrease');
chooseTiling();
}
function draw() {
background(50);
angle = angleSlider.value();
delta = deltaSlider.value();
level = levelSlider.value();
var t = 0;
var step = cycleSlider.value() / polys.length;
for (var i = 0; i < polys.length; i++) {
angle += (Math.sin(step * i)) * angleSliderIncrease.value();
delta += (Math.sin(step * i)) * deltaSliderIncrease.value();
polys[i].hankin();
polys[i].show();
}
}
function octSquareTiling() {
var octSqTiles = new SquareOctagonTiling(50);
octSqTiles.buildGrid();
polys = octSqTiles.polys;
}
function hexTiling() {
var hexTiles = new HexagonalTiling(50);
hexTiles.buildGrid();
polys = hexTiles.polys;
}
function hexTriangleSquareTiling() {
var tiles = new HexaTriangleSquareTiling(50);
tiles.buildGrid();
polys = tiles.polys;
}
function squareTiling() {
polys = [];
var inc = 100;
for (var x = 0; x < width; x += inc) {
for (var y = 0; y < height; y += inc) {
var poly = new Polygon(4);
poly.addVertex(x, y);
poly.addVertex(x + inc, y);
poly.addVertex(x + inc, y + inc);
poly.addVertex(x, y + inc);
poly.close();
polys.push(poly);
}
}
}
function dodecaHexSquareTiling() {
var tiles = new DodecaHexaSquareTiling(50);
tiles.buildGrid();
polys = tiles.polys;
}
function chooseTiling() {
switch (tilingTypeSelect.value()) {
case "4.8.8":
octSquareTiling();
break;
case "square":
squareTiling();
break;
case "hexagonal":
hexTiling();
break;
case "dodeca_hex_square":
dodecaHexSquareTiling();
break;
case "hexa_triangle_square":
// dodecaHexSquareTiling();
hexTriangleSquareTiling();
break;
default:
hexTriangleSquareTiling();
// dodecaHexSquareTiling();
// squareTiling();
break;
}
}
function printPoints() {
var data = {
a: 1,
b: 2,
c: 3
};
var json = JSON.stringify(data);
var blob = new Blob([json], {
type: "application/json"
});
var url = URL.createObjectURL(blob);
var a = document.createElement('a');
a.download = "backup.json";
a.href = url;
a.textContent = "Download backup.json";
var points = [];
polys.forEach(function(poly) {
poly.edges.forEach(function(edge) {
points.push(edge.h1.a);
points.push(edge.h1.end);
points.push(edge.h2.a);
points.push(edge.h2.end);
});
});
var pointList = points.map(function(point) {
return [point.x, point.y];
});
return (JSON.stringify(pointList));
}
var link;
function saveDrawing() {
var json = printPoints();
var blob = new Blob([json], {
type: "application/json"
});
var url = URL.createObjectURL(blob);
if (link) {
link.parentNode.removeChild(link);
}
var a = document.createElement('a');
a.download = "drawing.json";
a.href = url;
a.textContent = "Download drawing.json";
link = a;
var bp = document.getElementById('yellowDiv')
bp.appendChild(a);
}