-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
453 lines (401 loc) · 23.6 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
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<!DOCTYPE html>
<html>
<head>
<title>The interconnectedness of Jon's Lectures</title>
<script src="/jmacey/js/d3/d3.v2.min"></script>
<link rel="shortcut icon" href="/jmacey/favicon.ico" type="image/x-icon">
<style type="text/css">
.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
circle {
fill: ivory;
stroke: #333;
stroke-width: 1.5px;
}
text {
position:relative;
text-baseline:middle;
text-anchor:middle;
font: 12px sans-serif;
/*pointer-events: none;*/
}
text a {
fill: navy;
}
.tooltip {
position: absolute;
z-index: 10;
visibility: hidden;
background-color: yellow;
text-align: left;
padding: 4px;
border-radius: 4px;
font-weight: bold;
color: black;
font: 18px sans-serif;
border-style : solid;
border-width: 1px;
}
svg text {
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
svg text::selection {
background: none;
}
</style>
</head>
<body>
<script>
var w = window,
d = document,
e = d.documentElement,
g = d.getElementsByTagName('body')[0],
width = w.innerWidth || e.clientWidth || g.clientWidth,
height = w.innerHeight|| e.clientHeight|| g.clientHeight;
height-=40;
// create tool tip for later, this will be made visible on mouse over
var tooltip = d3.select("body")
.append("div")
.attr('class', 'tooltip');
var force = d3.layout.force()
.size([width, height])
.linkDistance(Math.abs(width/7))
.charge(-800)
.gravity(0.2)
.on("tick", tick);
var svg0 = d3.select("body").append("svg")
.attr("width", width)
.attr("height", 50)
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
var view = svg.append("view")
.attr("id", "view")
.attr("viewBox", [0,80,width,height-80]);
var path = svg.append("g").selectAll("path"),
circle = svg.append("g").selectAll("circle"),
hypertext = svg.append("g").selectAll("text");
var marker = svg.append("defs").append("marker")
.attr("id", "arrow")
.attr("viewBox", "0 -5 10 10")
.attr("refX", 15)
.attr("refY", -1.5)
.attr("markerWidth", 8)
.attr("markerHeight", 8)
.attr("orient", "auto")
.append("path")
.attr("d", "M0,-5L10,0L0,5");
var data = getData();
var nodes = data.nodes;
var links = data.links;
update(links);
window.addEventListener("resize", function(event)
{
width = w.innerWidth || e.clientWidth || g.clientWidth,
height = w.innerHeight|| e.clientHeight|| g.clientHeight; height-=40;
// TODO get this to resize everything
/*
svg.attr("width", width).attr("height", height);
svg0.attr("width", width).attr("height", height);
view.attr("viewBox", [0,80,width,height-80]);
force.size([width, height]);
force.nodes(nodes)
.links(links)
.resume();
*/
})
svg0.append("text")
.attr("x", (width / 2))
.attr("y", 30)
.attr("text-anchor", "middle")
.style("font-size", "30px")
.style("text-decoration", "bold")
.text("The interconnectedness of Jon's Lectures");
svg0.append("text")
.attr("x", (width / 2))
.attr("y", 45)
.attr("text-anchor", "middle")
.style("font-size", "18px")
.style("text-decoration", "bold")
.text("Drag nodes to re-arrange click text link to open lecture");
function update(links)
{
// Compute the distinct nodes from the links.
links.forEach(function (link)
{
link.source = nodes[link.source];
link.target = nodes[link.target];
});
force.nodes(nodes)
.links(links)
.start();
// Compute the data join. This returns the update selection.
path = path.data(force.links());
// Remove any outgoing/old paths.
path.exit().remove();
// Compute new attributes for entering and updating paths.
path.enter().append("path")
.attr("class", "link")
.style("stroke", function (d)
{
return d.colour;
}).attr("marker-end", "url(#arrow)");
// -------------------------------
// Compute the data join. This returns the update selection.
circle = circle.data(force.nodes());
// Add any incoming circles.
circle.enter().append("circle");
// Remove any outgoing/old circles.
circle.exit().remove();
// Compute new attributes for entering and updating circles.
circle.attr("r", function(d){return d.r;})
.attr("is", function(d){return "node-"+d.name})
.style("fill",function(d){return d.colour})
.call(force.drag)
.on("mouseover", function(d)
{
return tooltip.style("visibility", "visible").text( d.description).style("top", (event.pageY - 30) + "px").style("left", event.pageX + "px");
})
.on("mousemove", function()
{
// return tooltip.style("top", (event.pageY - 30) + "px").style("left", event.pageX + "px");
})
// we hide our tooltip on "mouseout"
.on("mouseout", function()
{
return tooltip.style("visibility", "hidden");
});
// Compute the data join. This returns the update selection.
hypertext = hypertext .data(force.nodes());
// Add any incoming texts.
hypertext.enter().append("text").append("a")
//.attr("xlink:show", "new")
.attr("target", "_blank");
// Remove any outgoing/old texts.
hypertext.exit().remove();
// Compute new attributes for entering and updating texts.
hypertext.attr("x", 1)
.attr("y", function(d){return d.offset})
.select("a")
.attr("xlink:href", function (d) {
if (d.URL !="None")
return "https://nccastaff.bournemouth.ac.uk/jmacey/Lectures/"+d.URL;
})
.on("mouseover", function(d)
{
d3.select(this).transition()
.ease('cubic-out')
.duration('200')
.attr('font-size', 32)
.attr( 'text-decoration', 'underline')
})
.on("mouseout", function()
{
d3.select(this).transition()
.ease('cubic-out')
.duration('200')
.attr('font-size', 12)
.attr('fill', '#333')
.attr( 'text-decoration', 'none')
})
.text(function (d) {
return d.name;
});
}
// Use elliptical arc path segments to doubly-encode directionality.
function tick()
{
circle.attr("transform", transform);
hypertext.attr("transform", transform);
path.attr("d", linkArc);
}
function linkArc(d)
{
var tx = Math.max(d.target.r, Math.min(width - d.target.r, d.target.x))
var ty = 45+Math.max(d.target.r, Math.min((height-45) - d.target.r, d.target.y));
var sx = Math.max(d.source.r, Math.min(width - d.source.r, d.source.x));
var sy = 45+Math.max(d.source.r, Math.min((height-45) - d.source.r, d.source.y));
var dx = tx - sx,
dy = ty - sy;
dr = Math.sqrt(dx * dx + dy * dy);
return "M" + sx + "," + sy + "A" + dr + "," + dr + " 0 0,1 " + tx + "," + ty;
}
function transform(d)
{
var tx = Math.max(d.r, Math.min(width - d.r, d.x));
var ty = 40+Math.max(d.r, Math.min((height-45) - d.r, d.y));
return "translate(" + tx + "," + ty + ")";
}
// Node
// name : (text will appear on node)
// URL : create a link to slides (None will be ignored)
// id : at present not used
// r : radius of node circule
// colour : colour of circle
// offset : text offset for link
// description : tooltip text
function getData()
{ // do this so I can have comments in it, it's basically json dictionary
return {
"nodes":[
{"name":"Programming","URL": "None","id" : "Programming", "r" : 45, "colour" : "orange" , "offset" : 0, "description" : "Everything related to programming"}, // 0
{"name":"Graphics","URL": "None","id" : "Graphics","r" : 45, "colour" : "yellow", "offset" : 0, "description" : "Everything related to Graphics"}, // 1
{"name":"C++","URL": "None","id" : "C++", "r" : 35, "colour" : "lightblue", "offset" : 0, "description" : "C++ Programming"}, //2
{"name":"C","URL": "None", "id" : "C", "r" : 35 , "colour" : "lightblue", "offset" : 0, "description" : "C programming"}, //3
{"name":"Python","URL" : "None", "id" : "Python", "r" : 35,"colour" : "lightgreen", "offset" : 0, "description" : "Python programming"}, //4
{"name":"Python Introduction","URL" : "Python/?home=/jmacey/Python", "r" : 12 , "offset" : -14 , "description" : "This is a basic introduction to the python programming language"}, // 5
{"name":"Maya Python","URL" : "MayaAPI/python/?home=/jmacey/MayaAPI", "r" : 12, "offset" : -14 , "description" : "Using maya python in particular the maya.cmds and pymel tools"}, // 6
{"name" : "Basic" , "URL" : "None" , "id" : "Basic C++", "r" : 25 , "colour" : "green", "offset" : 0, "description" : "Simple concepts"}, // 7
{"name" : "Intermediate" , "URL" : "None" , "id" : "Intermediate C++", "r" : 34 , "colour" : "mediumvioletred", "offset" : 0, "description" :"More in depth concepts"}, // 8
{"name" : "Advanced" , "URL" : "None" , "id" : "Advanced C++", "r" : 30 , "colour" : "red", "offset" : 0, "description" : "Advanced concepts may not be needed for most applications"}, // 9
{"name" : "Intro to C++" , "URL" : "ASE/BasicCPP/?home=/jmacey/ASE#/" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "Introduction to concepts in C++ 11/14/17 intended for people with some programming knowledge"}, // 10
{"name" : "Test Driven Development" , "URL" : "ASE/testing/?home=/jmacey/ASE#/" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "An introduction to testing and in particular Test Driven Development. This gives examples in Both C++ and Python using various frameworks"}, // 11
{"name" : "Memory and Pointers" , "URL" : "ASE/MemoryAndPointers/?home=/jmacey/ASE" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "Dynamic Memory allocation and the use of pointers in C and C++ this also covers the different memory segments used in a program"}, // 12
{"name" : "Classes" , "URL" : "ASE/Classes/?home=/jmacey/ASE" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "An introduction to class in C++"}, // 13
{"name" : "Creational Patterns" , "URL" : "DesignPatterns/lecture1/?home=/jmacey/ASE" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "Simple Design patterns for the creation of objects including Singleton, Factory and Monostate patterns"}, // 14
{"name" : "Structural Patterns" , "URL" : "DesignPatterns/lecture2/?home=/jmacey/ASE" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "More Design Patterns and Idioms such as PIMPL, Observer "}, // 15
{"name" : "Operator Overloading" , "URL" : "ASE/OperatorOverload/?home=/jmacey/ASE#/" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "Operator Overloading in C++ and an Introduction to the Standard Template library and Algorithms"}, // 16
{"name" : "Multicore and GPU programming" , "URL" : "MulticoreIntro/?home=/jmacey/AProg" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "An introduction to Multicore programming including how to analize performance and speedup"}, // 17
{"name" : "Threading" , "URL" : "threads/?home=/jmacey/AProg" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "Introduction to threading using pthreads, C++ 11 threads and Qt threading models"}, // 18
{"name" : "SIMD" , "URL" : "SIMD/?home=/jmacey/AProg" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "Using intrinsics for SIMD processing suitible to both C and C++ programming"}, // 19
{"name" : "Data Oriented Design" , "URL" : "DOD/?home=/jmacey/AProg" , "id" : "C++", "r" : 12, "offset" : -14, "description" : "Everything you thought about OO is wrong, it is all about how we lay out the Data. Using DOD to speed up your programs"}, // 20
{"name" : "OpenGL" , "URL" : "None" , "id" : "Graphics", "r" : 25, "colour" : "dodgerblue", "offset" : 0, "description" : "OpenGL API"}, // 21
{"name" : "Renderman" , "URL" : "None" , "id" : "Graphics", "r" : 32 , "colour" : "cyan", "offset" : 0, "description" : "Everything related to Renderman"}, // 22
{"name" : "Intro To Renderman" , "URL" : "Renderman/Lecture1Introduction/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Introduction to renderman and the structure of RIB files using python"}, // 23
{"name" : "Geometry" , "URL" : "Renderman/Lecture2Geometry/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Different Renderman geometry types and how to generate them"}, // 24
{"name" : "Lighting" , "URL" : "Renderman/Lecture3Lighting/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Lighting and shading in modern Renderman RIS"}, // 25
{"name" : "What is Programming" , "URL" : "PPP/WhatIsProgramming/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Basic introduction to programming concepts; Hello World!"}, // 26
{"name" : "Structured Programming" , "URL" : "PPP/StructuredProgramming/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Structured programming concepts BNF and other language constructs in C"}, // 27
{"name" : "Selection Structures" , "URL" : "PPP/Selection/" , "id" : "Graphics", "r" : 12, "offset" : -14 , "description" : "Selection and iteration in C"}, // 28
{"name" : "Memory and Pointers" , "URL" : "PPP/MemoryAndPointers/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "How Arrays and Pointers are releated and how this works with dynamic memory allocation in C"}, // 29
{"name" : "SQL" , "URL" : "sql/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Using SQL and databases, simple examples using MySQL and SqlLite in C / C++ and Python"}, // 30
{"name" : "Introduction to Qt" , "URL" : "ASE/IntroToQt/?home=/jmacey/ASE" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "What is Qt, How to create simple GUI programs, basic Qt Concepts"}, // 31
{"name" : "Modern OpenGL" , "URL" : "OpenGL/ModernOpenGL/?home=/jmacey/ASE" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Introduction to Modern OpenGL, Concepts and history of OpenGL"}, // 32
{"name" : "OpenGL Context Creation" , "URL" : "OpenGL/ContextCreation/?home=/jmacey/ASE" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "How to create a contex for OpenGL to use, with examples in SDL and Qt"}, // 33
{"name" : "Buffer Objects" , "URL" : "OpenGL/Buffers/?home=/jmacey/ASE" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "How OpenGL uses Buffers to generate all of the data required. This shows the bind to edit metaphor used in OpenGL"}, // 34
{"name" : "GLSL API" , "URL" : "OpenGL/GLSLAPI/?home=/jmacey/ASE#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "How to load, compile and link shaders using the C API, also introduce the ngl::ShaderLib classes"}, // 35
{"name" : "GLSL" , "URL" : "OpenGL/GLSL/?home=/jmacey/ASE#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "How the GLSL shading language works and basic syntax"}, // 36
{"name" : "Transformations" , "URL" : "OpenGL/transforms/?home=/jmacey/ASE#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "How to use Matrices to transform vertex data, we intoduce the Model, View Project concepts used in OpenGL and other Graphic pipelines"}, // 37
{"name" : "Shading Models" , "URL" : "OpenGL/shaders/?home=/jmacey/ASE#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Basic shading models in GLSL, how to build a simple Ambient, Specular Diffuse Blinn / Phong model and a basic introduction to PBR"}, // 38
{"name" : "Texturing" , "URL" : "OpenGL/textures/?home=/jmacey/ASE#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Image loading and processing using 3rd party libraries (Qt and ImageMagick) loading textures in OpenGL and GLSL"}, // 39
{"name" : "Advanced GL" , "URL" : "OpenGL/advanced/?home=/jmacey/ASE#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Framebuffer Objects, Point Bake animation, Blend Shapes, Shadows"}, // 40
{"name" : "Maya API Commands" , "URL" : "MayaAPI/Commands/?home=/jmacey/ASE#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Writing Maya C++ api commands"}, // 41
{"name" : "Maya API Nodes" , "URL" : "MayaAPI/Nodes/?home=/jmacey/MayaAPI#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Using MpxNode to create custom maya nodes"}, // 42
{"name" : "Computation, Iterators and Exporters" , "URL" : "MayaAPI/Exporters/?home=/jmacey/MayaAPI#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Various Maya API functions and how to write exporters"}, // 43
{"name" : "Classes" , "URL" : "PPP/Classes/?home=/jmacey/PPP#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Introduction to OO using C++ "}, // 44
{"name" : "Object Lifetimes" , "URL" : "PPP/Lifetimes/?home=/jmacey/PPP#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "How to manage the lifetime of objects, smart pointers"}, // 45
{"name":"Maths","URL": "None","id" : "Maths", "r" : 45, "colour" : "pink","description" : "Math topics"}, // 46
{"name" : "Template Meta Programming" , "URL" : "templates/?home=/jmacey/PP#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "Templates in C++"}, // 47
{"name" : "STL" , "URL" : "CAAG/STL/?home=/jmacey/CAAG#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "An introduction to the C++ Standard Template Library"}, // 48
{"name" : "S.O.L.I.D." , "URL" : "CAAG/SOLID/?home=/jmacey/CAAG#/" , "id" : "Graphics", "r" : 12, "offset" : -14, "description" : "The S.O.L.I.D. design principles for Object Oriented design (OOD)"}, // 49
],
"links":
[
{"source" : 0,"target" : 4,"colour": "grey"}, // programming to python
{"source" : 0,"target" : 3,"colour": "grey"}, // programming to python
{"source" : 0,"target" : 30,"colour": "grey"}, // programming to sql
{"source" : 4,"target" : 30,"colour": "grey"}, // programming to sql
{"source" : 2,"target" : 30,"colour": "grey"}, // programming to sql
{"source" : 0,"target" : 4,"colour": 1},
{"source" : 0,"target" : 2,"colour": 3},
{"source" : 0,"target" : 3,"colour": 1},
{"source" : 2,"target" : 7,"colour": 5}, // cpp to levels
{"source" : 2,"target" : 8,"colour": 5}, // cpp to levels
{"source" : 2,"target" : 9,"colour": 5}, // cpp to levels
{"source" : 7,"target" : 26,"colour": 5}, // Basic C++
{"source" : 22,"target" : 38,"colour": "cyan"}, // OpenGL to Lectures
{"source" : 7,"target" : 10,"colour": "green"}, // Basic C++
{"source" : 7,"target" : 11,"colour": "green"}, // Basic C++
{"source" : 7,"target" : 12,"colour": "green"}, // Basic C++
{"source" : 7,"target" : 44,"colour": "green"}, // Basic C++
{"source" : 7,"target" : 45,"colour": "green"}, // Basic C++
{"source" : 7,"target" : 49,"colour": "green"}, // Basic C++ SOLID
{"source" : 8,"target" : 13,"colour": "purple"}, // Intermediate C++
{"source" : 8,"target" : 14,"colour": "purple"}, // Intermediate C++
{"source" : 8,"target" : 15,"colour": "purple"}, // Intermediate C++
{"source" : 8,"target" : 16,"colour": "purple"}, // Intermediate C++
{"source" : 8,"target" : 31,"colour": "purple"}, // Intermediate C++
{"source" : 8,"target" : 48,"colour": "purple"}, // Intermediate C++
{"source" : 47,"target" : 48,"colour": "purple"}, // Intermediate C++
{"source" : 14,"target" : 49,"colour": "red"}, // SOLID
{"source" : 15,"target" : 49,"colour": "red"}, // SOLID
{"source" : 20,"target" : 49,"colour": "red"}, // SOLID
{"source" : 49,"target" : 13,"colour": "green"}, // SOLID
{"source" : 49,"target" : 44,"colour": "green"}, // SOLID
{"source" : 9,"target" : 17,"colour": "red"}, // Advanced C++
{"source" : 9,"target" : 18,"colour": "red"}, // Advanced C++
{"source" : 9,"target" : 19,"colour": "red"}, // Advanced C++
{"source" : 9,"target" : 20,"colour": "red"}, // Advanced C++
{"source" : 9,"target" : 47,"colour": "red"}, // Advanced C++
{"source" : 16,"target" : 47,"colour": "red"}, // Advanced C++
{"source" : 3,"target" : 12,"colour": "green"}, // C
{"source" : 3,"target" : 18,"colour": "green"}, // C
{"source" : 3,"target" : 27,"colour": "green"}, // C
{"source" : 3,"target" : 28,"colour": "green"}, // C
{"source" : 3,"target" : 29,"colour": "green"}, // C
{"source" : 29,"target" : 12,"colour": "green"}, // C
{"source" : 4,"target" : 5,"value": 2},
{"source" : 4,"target" : 6,"value": 2},
{"source" : 4,"target" : 11,"value": 2},
{"source" : 1,"target" : 21,"value": 10}, // graphics to OpenGL
{"source" : 1,"target" : 22,"value": 10}, // graphics to Renderman
{"source" : 4,"target" : 22,"value": 10}, // graphics to Renderman
{"source" : 22,"target" : 23,"colour": "cyan"}, // Renderman to Lectures
{"source" : 22,"target" : 24,"colour": "cyan"}, // Renderman to Lectures
{"source" : 22,"target" : 25,"colour": "cyan"}, // Renderman to Lectures
{"source" : 4,"target" : 23,"colour": "cyan"}, // Renderman to Lectures
{"source" : 4,"target" : 24,"colour": "cyan"}, // Renderman to Lectures
{"source" : 4,"target" : 25,"colour": "cyan"}, // Renderman to Lectures
{"source" : 21,"target" : 32,"value": 20}, // OpenGL to Lectures
{"source" : 21,"target" : 33,"value": 20}, // OpenGL to Lectures
{"source" : 21,"target" : 34,"value": 20}, // OpenGL to Lectures
{"source" : 21,"target" : 35,"value": 20}, // OpenGL to Lectures
{"source" : 21,"target" : 36,"value": 20}, // OpenGL to Lectures
{"source" : 21,"target" : 37,"value": 20}, // OpenGL to Lectures
{"source" : 21,"target" : 38,"value": 20}, // OpenGL to Lectures
{"source" : 21,"target" : 39,"value": 20}, // OpenGL to Lectures
{"source" : 21,"target" : 40,"value": 20}, // OpenGL to Lectures
{"source" : 2,"target" : 32,"colour": "blue"}, // OpenGL to Lectures
{"source" : 2,"target" : 33,"colour": "blue"}, // OpenGL to Lectures
{"source" : 2,"target" : 34,"colour": "blue"}, // OpenGL to Lectures
{"source" : 2,"target" : 35,"colour": "blue"}, // OpenGL to Lectures
{"source" : 2,"target" : 36,"colour": "blue"}, // OpenGL to Lectures
{"source" : 2,"target" : 37,"colour": "blue"}, // OpenGL to Lectures
{"source" : 2,"target" : 38,"colour": "blue"}, // OpenGL to Lectures
{"source" : 2,"target" : 39,"colour": "blue"}, // OpenGL to Lectures
{"source" : 2,"target" : 40,"colour": "blue"}, // OpenGL to Lectures
{"source" : 12,"target" : 34,"colour": "blue"}, // OpenGL to Lectures
{"source" : 29,"target" : 34,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 32,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 33,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 34,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 35,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 36,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 37,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 38,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 39,"colour": "blue"}, // OpenGL to Lectures
{"source" : 3,"target" : 40,"colour": "blue"}, // OpenGL to Lectures
{"source" : 36,"target" : 22,"colour": "blue"}, // OpenGL to Lectures
{"source" : 1,"target" : 41,"colour": "red"}, // OpenGL to Lectures
{"source" : 9,"target" : 41,"colour": "red"}, // OpenGL to Lectures
{"source" : 1,"target" : 42,"colour": "red"}, // OpenGL to Lectures
{"source" : 9,"target" : 42,"colour": "red"}, // OpenGL to Lectures
{"source" : 1,"target" : 43,"colour": "red"}, // OpenGL to Lectures
{"source" : 9,"target" : 43,"colour": "red"}, // OpenGL to Lectures
{"source" : 46,"target" : 37,"colour": "pink"}, // Maths to Lectures
{"source" : 46,"target" : 16,"colour": "pink"}, // Maths to Lectures
{"source" : 46,"target" : 35,"colour": "pink"}, // Maths to Lectures
{"source" : 46,"target" : 36,"colour": "pink"}, // Maths to Lectures
{"source" : 46,"target" : 40,"colour": "pink"}, // Maths to Lectures
]};
}
</script>
</body>
</html>