-
Notifications
You must be signed in to change notification settings - Fork 0
/
files.dot
118 lines (95 loc) · 3.09 KB
/
files.dot
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
digraph files {
node [peripheries = 1]
"hsl2hsv.m"
"colorize.m"
"coarse.png"
"fine.png"
"basis.png"
"large.png"
"small.png"
"composite.png"
"large-smooth.png"
"composite-smooth-simplified.png"
"composite-smooth-thresholded.png"
"logo.svg"
"logo-sharp.png"
"logo-sharp-simplified.png"
"logo-sharp-thresholded.png"
"logo-smooth.png"
"logo-smooth-simplified.png"
"logo-smooth-thresholded.png"
"animate.m"
"logo-sharp-powered.webm"
"logo-smooth-powered.webm"
node [peripheries = 2]
"coarse.ppm"
"fine.ppm"
"composite-smooth.png"
"logo-sharp.svg"
"logo-sharp-powered.svg"
"logo-sharp-simplified.svg"
"logo-sharp-thresholded.svg"
"logo-smooth.svg"
"logo-smooth-powered.svg"
"logo-smooth-simplified.svg"
"logo-smooth-thresholded.svg"
node [peripheries = 0]
subgraph cluster_colors {
"hsl2hsv.m" -> "coarse.ppm"
"hsl2hsv.m" -> "fine.ppm"
"colorize.m" -> "coarse.ppm"
"colorize.m" -> "fine.ppm"
"coarse.ppm" -> "coarse.png"
"fine.ppm" -> "fine.png"
}
subgraph cluster_rasters {
"basis.png" -> "composite.png"
"large.png" -> "composite.png"
"small.png" -> "composite.png"
"large.png" -> "large-smooth.png"
"basis.png" -> "composite-smooth.png"
"large-smooth.png" -> "composite-smooth.png"
"small.png" -> "composite-smooth.png"
"composite-smooth.png" -> "composite-smooth-simplified.png"
"composite-smooth.png" -> "composite-smooth-thresholded.png"
}
subgraph cluster_vectors {
"logo.svg" -> "logo-sharp.svg"
"logo-sharp.svg" -> "logo-smooth.svg"
"logo-sharp.svg" -> "logo-sharp-simplified.svg"
"logo-sharp.svg" -> "logo-sharp-thresholded.svg"
"logo-smooth.svg" -> "logo-smooth-simplified.svg"
"logo-smooth.svg" -> "logo-smooth-thresholded.svg"
"logo-sharp.svg" -> "logo-sharp.png"
"logo-smooth.svg" -> "logo-smooth.png"
"logo-sharp-simplified.svg" -> "logo-sharp-simplified.png"
"logo-sharp-thresholded.svg" -> "logo-sharp-thresholded.png"
"logo-smooth-simplified.svg" -> "logo-smooth-simplified.png"
"logo-smooth-thresholded.svg" -> "logo-smooth-thresholded.png"
}
subgraph cluster_animations {
// "animate.m" -> "logo-sharp-powered.svg"
// "animate.m" -> "logo-smooth-powered.svg"
// "logo-sharp-powered.svg" -> "logo-sharp-powered.webm"
// "logo-smooth-powered.svg" -> "logo-smooth-powered.webm"
edge [dir = back]
"logo-sharp-powered.svg" -> "animate.m"
"logo-smooth-powered.svg" -> "animate.m"
"logo-sharp-powered.webm" -> "logo-sharp-powered.svg"
"logo-smooth-powered.webm" -> "logo-smooth-powered.svg"
}
"fine.ppm" -> "basis.png"
"fine.ppm" -> "large.png"
"fine.ppm" -> "small.png"
"composite.png" -> "logo.svg"
// "logo-sharp.svg" -> "logo-sharp-powered.svg"
// "logo-smooth.svg" -> "logo-smooth-powered.svg"
edge [dir = back]
"logo-sharp-powered.svg" -> "logo-sharp.svg"
"logo-smooth-powered.svg" -> "logo-smooth.svg"
edge [style = invis]
"animate.m" -> "logo.svg"
"composite-smooth-thresholded.png" -> "logo.svg"
"fine.png" -> "large.png"
"fine.ppm" -> "logo-sharp-powered.webm"
}