forked from a-cui/crystallographicwebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (101 loc) · 4.17 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border:1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
th {
text-align: left;
}
td {
text-align: center;
}
img.resize {
max-width:75%;
max-height:75%;
}
</style>
<title>Crystallographic Sphere Packings</title>
</head>
<body>
<table style="width:100%">
<tr>
<th>Polyhedron</th>
<th>Strip Supercluster</th>
<th>Strip Packing</th>
<th>Gramian Matrix</th>
<th>Inversive Coordinates</th>
<th>Bend Matrices</th>
<th>Mathematica File</th>
</tr>
<tr>
<td>Tetrahedron </td> <!--name/image-->
<td><img class = "resize" src="tetrahedron/supercluster.png" alt="tetrahedron supercluster"></td> <!--strip supercluster-->
<td></td> <!--strip packing-->
<td><img class = "resize" src="tetrahedron/gram.png" alt="Gram matrix"></td> <!--gram-->
<td><img class = "resize" src="tetrahedron/coords.png" alt="inversive coordinates"></td> <!--Inversive Coordinates-->
<td><img class = "resize" src="tetrahedron/bend1.png" alt="one of the bend matrices"></td> <!--bend matrices-->
<td></td> <!--mathematica file-->
</tr>
<tr>
<td>Square Pyramid</td> <!--name/image-->
<td><img class = "resize" src="squarepyramid/supercluster.png" alt="supercluster"></td> <!--strip supercluster-->
<td></td> <!--strip packing-->
<td><img class = "resize" src="squarepyramid/gram.png" alt="Gram matrix"></td> <!--gram-->
<td><img class = "resize" src="squarepyramid/coords.png" alt="inversive coordinates"></td> <!--Inversive Coordinates-->
<td><img class = "resize" src="squarepyramid/bend1.png" alt="one of the bend matrices"></td> <!--bend matrices-->
<td></td> <!--mathematica file-->
</tr>
<tr>
<td>Pentagonal Pyramid</td> <!--name/image-->
<td><img class = "resize" src="pentagonalpyramid/supercluster.png" alt="supercluster"></td> <!--strip supercluster-->
<td></td> <!--strip packing-->
<td><img class = "resize" src="pentagonalpyramid/gram.png" alt="Gram matrix"></td> <!--gram-->
<td><img class = "resize" src="pentagonalpyramid/coords.png" alt="inversive coordinates"></td> <!--Inversive Coordinates-->
<td><img class = "resize" src="pentagonalpyramid/bend1.png" alt="one of the bend matrices"></td> <!--bend matrices-->
<td></td> <!--mathematica file-->
</tr>
<tr>
<td>Cube</td> <!--name/image-->
<td><img class = "resize" src="cube/supercluster.png" alt="supercluster"></td> <!--strip supercluster-->
<td></td> <!--strip packing-->
<td><img class = "resize" src="cube/gram.png" alt="Gram matrix"></td> <!--gram-->
<td><img class = "resize" src="cube/coords.png" alt="inversive coordinates"></td> <!--Inversive Coordinates-->
<td><img class = "resize" src="cube/bend1.png" alt="one of the bend matrices"></td> <!--bend matrices-->
<td></td> <!--mathematica file-->
</tr>
<tr>
<td>Cuboctahedron</td> <!--name/image-->
<td><img class = "resize" src="cuboctahedron/supercluster.png" alt="supercluster"></td> <!--strip supercluster-->
<td></td> <!--strip packing-->
<td><img class = "resize" src="cuboctahedron/gram.png" alt="Gram matrix"></td> <!--gram-->
<td><img class = "resize" src="cuboctahedron/coords.png" alt="inversive coordinates"></td> <!--Inversive Coordinates-->
<td><img class = "resize" src="cuboctahedron/bend1.png" alt="one of the bend matrices"></td> <!--bend matrices-->
<td></td> <!--mathematica file-->
</tr>
<tr>
<td></td> <!--name/image-->
<td><img class = "resize" src="/supercluster.png" alt="supercluster"></td> <!--strip supercluster-->
<td></td> <!--strip packing-->
<td><img class = "resize" src="/gram.png" alt="Gram matrix"></td> <!--gram-->
<td></td> <!--Inversive Coordinates-->
<td></td> <!--bend matrices-->
<td></td> <!--mathematica file-->
</tr>
<tr>
<td></td> <!--name/image-->
<td><img class = "resize" src="/supercluster.png" alt="supercluster"></td> <!--strip supercluster-->
<td></td> <!--strip packing-->
<td><img class = "resize" src="/gram.png" alt="Gram matrix"></td> <!--gram-->
<td></td> <!--Inversive Coordinates-->
<td></td> <!--bend matrices-->
<td></td> <!--mathematica file-->
</tr>
</table>
</body>
</html>