-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path19-1.jq
40 lines (39 loc) · 1.27 KB
/
19-1.jq
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
def transform($m):
[[.] + ($m[] | [.]) | transpose | map(first * last) | add];
[inputs] | join(";")/";;" | map(
split(";")[1:] | map(split(",") | map(tonumber))
| [
[.] + (.[] | [.]) | {
xyz: last,
sig: [(first[] | [.]) + [last] | transpose | map(last - first | fabs) | add]
}
]
| {points: .}
)
| first.done = false
| nth(length; recurse(
first(.[] | select(.done == false)) as $target
| first(.[] | select(.done == false)).done = true
| (.[] | select(.done == null)) |= (
(
[
limit(
2;
($target.points[] | [.]) + (.points[] | [.])
| select((first.sig | length) - (first.sig - last.sig | length) >= 12)
| map(.xyz)
)
] as $match
| (
$match | select(length > 0)
| transpose | map(transpose | map(first - last)) | . as [$from, $to]
| [[1, 0, 0], [-1, 0, 0], [0, 1, 0], [0, -1, 0], [0, 0, 1], [0, 0,-1]]
| map([.]) | .[] + .[] + .[]
| select(. as $m | $from == ($to | transform($m)))
) as $tx
| ($match[0] | last |= transform($tx) | transpose | map(last - first)) as [$x, $y, $z]
| .points[].xyz |= (transform($tx) | .[0] -= $x | .[1] -= $y | .[2] -= $z)
| .done = false
) // .
)
)) | map(.points[].xyz) | unique | length