-
Notifications
You must be signed in to change notification settings - Fork 0
/
Symmetry.elm
373 lines (344 loc) · 9.69 KB
/
Symmetry.elm
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
module Symmetry exposing
( Edge, Symmetry, runSymmetry
, simplicial, tesseractic, snub24sym, regular24sym, regular120sym
, grandAntiprismSym
, tetrahedralPrismSym, snubCubicPrismSym, cubicPrismSym, snubDodecahedralPrismSym, dodecahedralPrismSym
, duoprismSym, antiprismPrismSym)
import Matrix4 exposing (Float4x4,mulVector)
import Vector4 exposing (..)
import AllDict as Dict exposing (AllDict)
import Array.Hamt as Array exposing (Array)
type alias Edge = (Float4, Float4)
type alias Symmetry = List (List Float4x4)
runSymmetry : Symmetry -> Edge -> Array Edge
runSymmetry sym e =
run sym e
|> Dict.foldl (\k () -> Array.push k) Array.empty
run : Symmetry -> Edge -> AllDict Edge () (Vec4 Int, Vec4 Int)
run sym (x,y) =
case sym of
[] -> Dict.singleton sortFn (x,y) ()
first :: rest ->
List.foldl
(\m acc -> Dict.union acc (run rest (mulVector m x, mulVector m y)))
(Dict.empty sortFn)
first
mulEdge : Float4x4 -> Edge -> Edge
mulEdge m (x,y) = (mulVector m x, mulVector m y)
roundPoint : Float4 -> Vec4 Int
roundPoint = scale 1024 >> map round
roundEdge : Edge -> (Vec4 Int, Vec4 Int)
roundEdge (p,q) = (roundPoint p, roundPoint q)
sortFn : Edge -> (Vec4 Int, Vec4 Int)
sortFn (p,q) = min (roundEdge (p,q)) (roundEdge (q,p))
simplicial : Symmetry
simplicial =
let s = sqrt 5
in
[ [ ( ( 1, 0, 0, 0)
, ( 0, 1, 0, 0)
, ( 0, 0, 1, 0)
, ( 0, 0, 0, 1))
, ( (-1, 0, 0, 0)
, ( 0,-1, 0, 0)
, ( 0, 0, 1, 0)
, ( 0, 0, 0, 1))
]
, [ ( ( 1, 0, 0, 0)
, ( 0, 1, 0, 0)
, ( 0, 0, 1, 0)
, ( 0, 0, 0, 1))
, ( (-1, 0, 0, 0)
, ( 0, 1, 0, 0)
, ( 0, 0,-1, 0)
, ( 0, 0, 0, 1))
]
, [ ( ( 1, 0, 0, 0)
, ( 0, 1, 0, 0)
, ( 0, 0, 1, 0)
, ( 0, 0, 0, 1))
, ( ( 0, 1, 0, 0)
, ( 1, 0, 0, 0)
, ( 0, 0, 1, 0)
, ( 0, 0, 0, 1))
]
, [ ( ( 1, 0, 0, 0)
, ( 0, 1, 0, 0)
, ( 0, 0, 1, 0)
, ( 0, 0, 0, 1))
, ( ( 0, 1, 0, 0)
, ( 0, 0, 1, 0)
, ( 1, 0, 0, 0)
, ( 0, 0, 0, 1))
, ( ( 0, 0, 1, 0)
, ( 1, 0, 0, 0)
, ( 0, 1, 0, 0)
, ( 0, 0, 0, 1))
]
, [ ( ( 1, 0, 0, 0)
, ( 0, 1, 0, 0)
, ( 0, 0, 1, 0)
, ( 0, 0, 0, 1))
, ( ( 3/4,-1/4,-1/4,-s/4)
, (-1/4, 3/4,-1/4,-s/4)
, (-1/4,-1/4, 3/4,-s/4)
, (-s/4,-s/4,-s/4,-1/4)
)
, ( ( 3/4,-1/4, 1/4, s/4)
, (-1/4, 3/4, 1/4, s/4)
, ( 1/4, 1/4, 3/4,-s/4)
, ( s/4, s/4,-s/4,-1/4)
)
, ( ( 3/4, 1/4,-1/4, s/4)
, ( 1/4, 3/4, 1/4,-s/4)
, (-1/4, 1/4, 3/4, s/4)
, ( s/4,-s/4, s/4,-1/4)
)
, ( ( 3/4, 1/4, 1/4,-s/4)
, ( 1/4, 3/4,-1/4, s/4)
, ( 1/4,-1/4, 3/4, s/4)
, (-s/4, s/4, s/4,-1/4)
)
]
]
tesseractic : Symmetry
tesseractic =
cubicPrismSym ++
[ [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((0,1,0,0),(0,0,1,0),(0,0,0,1),(1,0,0,0))
, ((0,0,1,0),(0,0,0,1),(1,0,0,0),(0,1,0,0))
, ((0,0,0,1),(1,0,0,0),(0,1,0,0),(0,0,1,0))
]
]
snub24sym : Symmetry
snub24sym =
[ [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( (-1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
]
, [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 1, 0, 0, 0 )
, ( 0,-1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
]
, [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0,-1, 0 )
, ( 0, 0, 0, 1 )
)
]
, [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0,-1 )
)
]
, [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 0, 1, 0, 0 )
, ( 1, 0, 0, 0 )
, ( 0, 0, 0, 1 )
, ( 0, 0, 1, 0 )
)
]
, [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
, ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
)
]
, [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 1, 0, 0, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 0, 0, 1, 0 )
, ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 0, 1 )
)
]
, [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 1/2, 1/2, 1/2, 1/2 )
, ( 1/2, 1/2,-1/2,-1/2 )
, ( 1/2,-1/2, 1/2,-1/2 )
, ( 1/2,-1/2,-1/2, 1/2 )
)
, ( ( 1/2,-1/2,-1/2,-1/2 )
, (-1/2, 1/2,-1/2,-1/2 )
, (-1/2,-1/2, 1/2,-1/2 )
, (-1/2,-1/2,-1/2, 1/2 )
)
]
]
regular24sym : Symmetry
regular24sym =
snub24sym
++
[ [ ( ( 1, 0, 0, 0 )
, ( 0, 1, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
, ( ( 0, 1, 0, 0 )
, ( 1, 0, 0, 0 )
, ( 0, 0, 1, 0 )
, ( 0, 0, 0, 1 )
)
]
]
grandAntiprismSym : Symmetry
grandAntiprismSym =
let φ = (sqrt 5 + 1) / 2
m1 =
( (1, 0, 0, 0)
, (0, 0.4*φ+0.3,-0.3*φ+0.4,(φ-1)/2)
, (0,-0.3*φ+0.4, 0.1*φ+0.7, 1/2)
, (0, (1-φ)/2, -1/2, φ/2)
)
m2 =
( ( φ/2, 1/2, (1-φ)/2, 0)
, ( -1/2, 0.1*φ+0.7, 0.3*φ-0.4, 0)
, ((φ-1)/2, 0.3*φ-0.4, 0.4*φ+0.3, 0)
, ( 0, 0, 0, 1)
)
m3 = Matrix4.mul m1 m2
m4 = Matrix4.mul m1 (Matrix4.transpose m2) -- == inverse
in
[ List.scanl Matrix4.mul Matrix4.identity [m3,m3,m3,m3,m3,m3,m3,m3,m3]
, List.scanl Matrix4.mul Matrix4.identity [m4,m4,m4,m4,m4,m4,m4,m4,m4]
]
regular120sym : Symmetry
regular120sym = snub24sym ++ grandAntiprismSym
duoprismSym : Int -> Int -> Symmetry
duoprismSym m n =
let s1 = sin (turns (1/toFloat m))
c1 = cos (turns (1/toFloat m))
s2 = sin (turns (1/toFloat n))
c2 = cos (turns (1/toFloat n))
m1 = ((c1,s1,0,0),(-s1,c1,0,0),(0,0,1,0),(0,0,0,1))
m2 = ((1,0,0,0),(0,1,0,0),(0,0,c2,s2),(0,0,-s2,c2))
in
[ List.scanl Matrix4.mul Matrix4.identity (List.repeat m m1)
, List.scanl Matrix4.mul Matrix4.identity (List.repeat n m2)
]
antiprismPrismSym : Int -> Symmetry
antiprismPrismSym n =
let s1 = sin (turns (1/toFloat (2*n)))
c1 = cos (turns (1/toFloat (2*n)))
m1 = ((c1,s1,0,0),(-s1,c1,0,0),(0,0,-1,0),(0,0,0,1))
in
[ List.scanl Matrix4.mul Matrix4.identity (List.repeat (2*n) m1)
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,-1))
]
]
tetrahedralPrismSym : Symmetry
tetrahedralPrismSym =
[ [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,-1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((1,0,0,0),(0,-1,0,0),(0,0,-1,0),(0,0,0,1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((-1,0,0,0),(0,-1,0,0),(0,0,1,0),(0,0,0,1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((0,1,0,0),(1,0,0,0),(0,0,1,0),(0,0,0,1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((0,1,0,0),(0,0,1,0),(1,0,0,0),(0,0,0,1))
, ((0,0,1,0),(1,0,0,0),(0,1,0,0),(0,0,0,1))
]
]
snubCubicPrismSym : Symmetry
snubCubicPrismSym =
[ [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,-1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((1,0,0,0),(0,-1,0,0),(0,0,-1,0),(0,0,0,1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((-1,0,0,0),(0,-1,0,0),(0,0,1,0),(0,0,0,1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((0,1,0,0),(0,0,1,0),(1,0,0,0),(0,0,0,1))
, ((0,0,1,0),(1,0,0,0),(0,1,0,0),(0,0,0,1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((0,1,0,0),(1,0,0,0),(0,0,-1,0),(0,0,0,1))
]
]
cubicPrismSym : Symmetry
cubicPrismSym =
snubCubicPrismSym ++ [[((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1)), ((0,1,0,0),(1,0,0,0),(0,0,1,0),(0,0,0,1))]]
snubDodecahedralPrismSym : Symmetry
snubDodecahedralPrismSym =
let phi = (sqrt 5 + 1) / 2
m =
( (1/2,-phi/2,1/(2*phi),0)
, (phi/2,1/(2*phi),-1/2,0)
, (1/(2*phi),1/2,phi/2,0)
, (0,0,0,1)
)
in
[ [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,-1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((1,0,0,0),(0,-1,0,0),(0,0,-1,0),(0,0,0,1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((-1,0,0,0),(0,-1,0,0),(0,0,1,0),(0,0,0,1))
]
, [ ((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))
, ((0,1,0,0),(0,0,1,0),(1,0,0,0),(0,0,0,1))
, ((0,0,1,0),(1,0,0,0),(0,1,0,0),(0,0,0,1))
]
, List.scanl Matrix4.mul Matrix4.identity [m,m,m,m]
]
dodecahedralPrismSym : Symmetry
dodecahedralPrismSym =
snubDodecahedralPrismSym ++ [[((1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1)), ((-1,0,0,0),(0,1,0,0),(0,0,1,0),(0,0,0,1))]]