-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathDodecaHexaSquareTiling.js
103 lines (97 loc) · 2.87 KB
/
DodecaHexaSquareTiling.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
function DodecaHexaSquareTiling(r) {
this.polys = [];
this.buildCell = function(x, y) {
var sides = 12;
var p;
p = build_poly(x,y,r,sides);
this.polys.push(p);
var h12 = r*cos(Math.PI/sides);
var side = r*sin(Math.PI/sides);
// side is common to all, so we also have
// side =r4*sin(Math.PI/4);
// side =r6*sin(Math.PI/6);
//Not enough we got to get r4 and r6;
var r6 = side/Math.sin(Math.PI/6);
var r4 = side/Math.sin(Math.PI/4);
var h6 = r6*cos(Math.PI/6);
var h4 = r4*cos(Math.PI/4);
var d4 = h12+h4;
var d6 = h12+h6;
var D4A = p5.Vector.fromAngle(2*Math.PI/12);
var D4B = p5.Vector.fromAngle(-2*Math.PI/12);
var D6 = p5.Vector.fromAngle(4*Math.PI/12);
D4A.setMag(d4);
D4B.setMag(d4);
D6.setMag(d6);
console.log("h4 : ",h4);
p = build_poly(x,y+d4,r4,4);
this.polys.push(p);
p = build_poly(x+d6,y,r6,6);
this.polys.push(p);
//lets find out which those are:
p = build_poly(x+D6.x,y+D6.y,r6,6,Math.PI/3);
this.polys.push(p);
p = build_poly(x+D4A.x,y+D4A.y,r4,4,Math.PI/6);
this.polys.push(p);
p = build_poly(x+D4B.x,y+D4B.y,r4,4,-Math.PI/6);
this.polys.push(p);
/*
p = new Polygon();
// rotate 360 degrees around the clock in 60 degree increments
var inc = 2 * Math.PI / sides;
for (var index = 0; index < sides; index++) {
// angular to cartesian
var θ = (index * inc) - inc / 2;
var vX = x + r * Math.cos(θ);
var vY = y + r * Math.sin(θ);
p.addVertex(vX, vY);
}
p.close();
p = new Polygon();
*/
}
// http://www.redblobgames.com/grids/hexagons/
this.buildGrid = function() {
var sides = 12;
var h12 = r*cos(Math.PI/sides);
var side = r*sin(Math.PI/sides);
var r6 = side/Math.sin(Math.PI/6);
var r4 = side/Math.sin(Math.PI/4);
var h6 = r6*cos(Math.PI/6);
var h4 = r4*cos(Math.PI/4);
console.log("h4 : ",h4);
//What I'm trying to do here is this:
var h = h12+h4;
var w = 2*h12+4*h6+2*h4;
var inc = h
// TODO: get dimensions from somewhere
var dim =400;
var row = 0;
for (var y = -h / 2; y < dim + h/2; y += inc) {
var startX = ((row % 2) == 0) ? -w : -w / 2;
for (var x = startX; x < dim; x += w) {
this.buildCell(x, y);
}
row++;
}
/*
*/
}
}
// Now I have to add two rotated polygons , another square
// and another hexagon;
function build_poly(x,y,r,sides,init_angle) {
p = new Polygon(sides);
if(!init_angle)init_angle = 0;
// rotate 360 degrees around the clock in 60 degree increments
var inc = 2 * Math.PI / sides;
for (var index = 0; index < sides; index++) {
// angular to cartesian
var θ = (index * inc) - inc / 2+init_angle;
var vX = x + r * Math.cos(θ);
var vY = y + r * Math.sin(θ);
p.addVertex(vX, vY);
}
p.close();
return p;
}