Blame view

GraphCanvas.py 65.4 KB
9f9f1788   Pavel Govyadinov   clead up version ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  #!/usr/bin/env python3
  # -*- coding: utf-8 -*-
  """
  Created on Mon Aug  5 15:43:59 2019
  
  @author: pavel
      The GraphCanvas class that extends the scene class in vispy in order to draw
      the graph object. This class is wrapped in a QTcanvas.
  """
  
  from vispy import gloo, scene
  from vispy.gloo import set_viewport, set_state, clear, set_blend_color
  from vispy.util.transforms import perspective, translate, rotate, scale
  import vispy.gloo.gl as glcore
  
  import numpy as np
  import math
  import network_dep as nwt
  
  #import the graph shaders.
  from graph_shaders import vert, frag, vs, fs
  from subgraph_shaders import vert_s, frag_s, vs_s, fs_s
  
6eb102f5   Pavel Govyadinov   Fixed issue cause...
24
25
  DEBUG = False
  
9f9f1788   Pavel Govyadinov   clead up version ...
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
  #The graph canvas class that 
  class GraphCanvas(scene.SceneCanvas):
      
      """
          Initialization method.
          Generates the 512x512 canvas, makes it available for drawing the fills all
          the GLSL shaders with dummy data.
      """
      def __init__(self, **kwargs):
          # Initialize the canvas for real
          scene.SceneCanvas.__init__(self, size=(512, 512), **kwargs)
          #Unfreeze the canvas to make dynamic interaction possible
          self.unfreeze()
          
          #initialize all the boolean and dictionary variables.
          ps = self.pixel_scale
          self.subgraphs = False
          self.position = 50, 50
          self.down=False;
          
          #Dictionaries to store the unique color ID, cluster ID, and edge-to-ID
          #dictionaries.
          self.color_dict = {}
          self.cluster_dict = {}
          self.edge_dict = {}
  
          #Booleans the storage for the current "Path", i.e. edges the user selected.
          self.pathing = False
          self.path = []
          self.full_path = []
  
          #utility variables used for storing the cluster being moved and all the
          #nodes and edges that belong to that cluster and move along with it.
          self.moving = False
          self.moving_cluster = False
          self.selection = False
  
          n = 10
          ne = 10
          #Init dummy structures
          self.uniforms = [('u_graph_size', np.float32, 3)]
          self.data = np.zeros(n, dtype=[('a_position', np.float32, 3),
                                    ('a_fg_color', np.float32, 4),
                                    ('a_bg_color', np.float32, 4),
                                    ('a_size', np.float32, 1),
                                    ('a_linewidth', np.float32, 1),
                                    ('a_unique_id', np.float32, 4),
                                    ])
  
          self.clusters = np.zeros(n, dtype=[('a_position', np.float32, 3),
                ('a_bg_color', np.float32, 4),
                ('a_value', np.float32, 2),
                ('a_unique_id', np.float32, 4),
                ])
  
          self.edges = np.random.randint(size=(ne, 2), low=0,
                                    high=n-1).astype(np.uint32)
          self.edges_s = np.random.randint(size=(ne, 4), low=0,
                                    high=n-1).astype(np.uint32)
          self.data['a_position'] = np.hstack((0.25 * np.random.randn(n, 2),
                                         np.zeros((n, 1))))
          self.data['a_fg_color'] = 0, 0, 0, 1.0
          color = np.random.uniform(0.5, 1., (n, 3))
          self.data['a_bg_color'] = np.hstack((color, np.zeros((n, 1))))
          self.data['a_size'] = np.random.randint(size=n, low=8*ps, high=20*ps)
          self.data['a_linewidth'] = 8.*ps
          self.data['a_unique_id'] = np.hstack((color, np.ones((n, 1))))
          #self.uniforms['u_graph_size'] = [1.0, 1.0, 1.0]
          self.translate = [0,0,0]
          self.scale = [1,1,1]
          #color = np.random.uniform(0.5, 1., (ne, 3))
          #self.linecolor = np.hstack((color, np.ones((ne, 1))))
          #color = np.random.uniform(0.5, 1., (ne, 3))
          #self.linecolor = np.hstack((color, np.ones((ne, 1))))
          self.u_antialias = 1
  
          #init dummy vertex and index buffers.
          self.vbo = gloo.VertexBuffer(self.data)
          self.vbo_s = gloo.VertexBuffer(self.clusters)
  
          #Need to initialize thick lines.
          self.index = gloo.IndexBuffer(self.edges)
          self.index_s = gloo.IndexBuffer(self.edges_s)
  
          #Set the view matrices.
          self.view = np.eye(4, dtype=np.float32)
          self.model = np.eye(4, dtype=np.float32)
          self.projection = np.eye(4, dtype=np.float32)
  
          #init shaders used for vertices of the full graph.
          self.program = gloo.Program(vert, frag)
          self.program.bind(self.vbo)
          self.program['u_size'] = 1
          self.program['u_antialias'] = self.u_antialias
          self.program['u_model'] = self.model
          self.program['u_view'] = self.view
          self.program['u_projection'] = self.projection
          self.program['u_graph_size'] = [1.0, 1.0, 1.0]
          self.program['u_picking'] = False
  
          #init shades used for the edges in the graph
          self.program_e = gloo.Program(vs, fs)
          self.program_e['u_size'] = 1
          self.program_e['u_model'] = self.model
          self.program_e['u_view'] = self.view
          self.program_e['u_projection'] = self.projection
          #self.program_e['l_color'] = self.linecolor.astype(np.float32)
          self.program_e.bind(self.vbo)
  
          #init shaders used to the vertices in the subgraph graph.
          self.program_s = gloo.Program(vert_s, frag_s)
          self.program_s.bind(self.vbo_s)
          self.program_s['u_model'] = self.model
          self.program_s['u_view'] = self.view
          self.program_s['u_projection'] = self.projection
          self.program_s['u_graph_size'] = [1.0, 1.0, 1.0]
          self.program_s['u_picking'] = False
  
          #init shaders used for the subgraph-edges
          self.program_e_s = gloo.Program(vs_s, fs_s)
          self.program_e_s['u_size'] = 1
          self.program_e_s['u_model'] = self.model
          self.program_e_s['u_view'] = self.view
          self.program_e_s['u_projection'] = self.projection
          #self.program_e['l_color'] = self.linecolor.astype(np.float32)
          self.program_e_s.bind(self.vbo_s)
  
  
          #set up the viewport and the gl state.
          set_viewport(0, 0, *self.physical_size)
  
          set_state(clear_color='white', depth_test=True, blend=True,
                    blend_func=('src_alpha', 'one_minus_src_alpha'), depth_func = ('lequal'))
  
      """
          Function that recolors vertices based on the selected statistic
          Maps the statisic stored in G to a colormap passed to the function
          Then updates the necessary color array.
      """    
      def color_vertices(self, G, vertex_property, dtype = False, cm = 'plasma'):
          #if we are visualing the clusters we should use a discrete colormap
          #otherwise use the passed colormap
          if dtype == True:
              G.vertex_properties["RGBA"] = nwt.Network.map_property_to_color(G, G.vertex_properties["clusters"])
          else:
              G.vertex_properties["RGBA"] = nwt.Network.map_property_to_color(G, G.vertex_properties[vertex_property], colormap=cm)
          #set the color and update the Vertices.
          self.current_color = vertex_property
          color = G.vertex_properties["RGBA"].get_2d_array(range(4)).T
          self.data['a_bg_color'] = color
          self.vbo = gloo.VertexBuffer(self.data)
          self.program.bind(self.vbo)
          #self.program_e.bind(self.vbo)
          self.update()
  
      """
          Maps a statistic of the vertices based on the size of the canvas to size of
          the drawn object.
      """
      def size_vertices(self, G, propertymap):
          size = nwt.Network.map_vertices_to_range(G, [30*self.pixel_scale, 8*self.pixel_scale], propertymap).get_array()
          self.data['a_size'] = size
          self.vbo = gloo.VertexBuffer(self.data)
          self.program.bind(self.vbo)
          #self.program_e.bind(self.vbo)
          self.update()
  
  
      """
          Function to dim all nodes and edges that do not belong to a cluster chosen 
          in the graph view. Returns a copy of the graph with the alpha channel saved.
          OPTMIZE HERE: could just return an alpha array to reduce memory usage.
      """
      def focus_on_cluster(self, G, c_id):
          G_copy = nwt.gt.Graph(G, directed=False)
          e_color = G_copy.edge_properties["RGBA"].get_2d_array(range(4)).T
          vertices = np.argwhere(self.labels != c_id)
          for v in range(vertices.shape[0]):
              idx = vertices[v][0]
              vtx = G_copy.vertex(idx)
              for e in vtx.all_edges():
                  if (int(e.source()), int(e.target())) in self.edge_dict.keys():
                      index = int(self.edge_dict[int(e.source()), int(e.target())])
                      if vtx == int(e.source()):
                          e_color[index][3] = 0.05
                      elif vtx == int(e.target()):
                          e_color[index][3] = 0.05
                  else:
                      index = int(self.edge_dict[int(e.target()), int(e.source())])
                      if vtx == int(e.target()):
                          e_color[index][3] = 0.05
                      elif vtx == int(e.source()):
                          e_color[index][3] = 0.05
  
          G_copy.edge_properties["RGBA"] = G_copy.new_edge_property("vector<double>", vals = e_color)
  
          return G_copy
  
      """
          Function that sets the size of the vertices based on the distance from the 
          camera.
      """
      def vertexSizeFromDistance(self, G, camera_pos):
          location = G.vertex_properties["p"].get_2d_array(range(3)).T
          cam_array = np.zeros(location.shape, dtype=np.float32)
          len_array = np.zeros(location.shape[0])
          offset_array = np.zeros(location.shape, dtype=np.float32)
          cam_array[:][0:3] = camera_pos
6eb102f5   Pavel Govyadinov   Fixed issue cause...
234
          offset = [(self.bbu[0]-self.bbl[0])/2, (self.bbu[1]-self.bbl[1])/2, (self.bbu[2]-self.bbl[2])/2]
9f9f1788   Pavel Govyadinov   clead up version ...
235
236
237
238
239
          location = location - offset
          location = location - camera_pos
          for i in range(location.shape[0]):
              len_array[i] = np.sqrt(np.power(location[i][0],2) + np.power(location[i][1],2) + np.power(location[i][2],2))
  
6eb102f5   Pavel Govyadinov   Fixed issue cause...
240
  
9f9f1788   Pavel Govyadinov   clead up version ...
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
          G.vertex_properties['dist_from_camera'] = G.new_vertex_property('float', vals=len_array)
          self.data['a_size'] = nwt.Network.map_vertices_to_range(G, [1*self.pixel_scale, 60*self.pixel_scale], 'dist_from_camera').get_array()
  
  
          size = nwt.Network.map_vertices_to_range(G, [1.0, 0.5], 'dist_from_camera').get_array()
          edges = G.get_edges()
          for e in range(edges.shape[0]):
              idx = int(4*edges[e][2])
              self.line_data['a_linewidth'][idx] = size[edges[e][0]]
              self.line_data['a_linewidth'][idx+1] = size[edges[e][1]]
              self.line_data['a_linewidth'][idx+2] = size[edges[e][0]]
              self.line_data['a_linewidth'][idx+3] = size[edges[e][1]]
  
  
          #self.vbo = gloo.VertexBuffer(self.data)
          #self.vbo_line = gloo.VertexBuffer(self.line_data)
          #self.program.bind(self.vbo)
          #self.program_e.bind(self.vbo_line)
          #self.update()
  
      """
          Function that scales the alpha channel of each vertex in the graph based on
          The distance from the camera.
          Sometimes needs to be done separetly.
      """
      def vertexAlphaFromDistance(self, G, camera_pos):
          location = G.vertex_properties["p"].get_2d_array(range(3)).T
          cam_array = np.zeros(location.shape, dtype=np.float32)
          len_array = np.zeros(location.shape[0])
          #offset_array = np.zeros(location.shape, dtype=np.float32)
          cam_array[:][0:3] = camera_pos
6eb102f5   Pavel Govyadinov   Fixed issue cause...
272
          offset = [(self.bbu[0]-self.bbl[0])/2, (self.bbu[1]-self.bbl[1])/2, (self.bbu[2]-self.bbl[2])/2]
9f9f1788   Pavel Govyadinov   clead up version ...
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
          location = location - offset
          location = location - camera_pos
          for i in range(location.shape[0]):
              len_array[i] = np.sqrt(np.power(location[i][0],2) + np.power(location[i][1],2) + np.power(location[i][2],2))
  
  
          test = nwt.Network.map_vertices_to_range(G, [0.0, 1.0], 'dist_from_camera').get_array()
          color = G.vertex_properties["RGBA"].get_2d_array(range(4)).T
          for i in range(location.shape[0]):
              color[i][3] = test[i]
          G.vertex_properties["RGBA"] = G.new_vertex_property("vector<double>", vals = color)
          self.data['a_bg_color'] = color
  
          edges = G.get_edges()
          for e in range(edges.shape[0]):
              idx = int(4*edges[e][2])
              self.line_data['a_fg_color'][idx] = color[edges[e][0]]
              self.line_data['a_fg_color'][idx+1] = color[edges[e][1]]
              self.line_data['a_fg_color'][idx+2] = color[edges[e][0]]
              self.line_data['a_fg_color'][idx+3] = color[edges[e][1]]
  
  
  
          self.vbo = gloo.VertexBuffer(self.data)
          self.vbo_line = gloo.VertexBuffer(self.line_data)
          self.program.bind(self.vbo)
          self.program_e.bind(self.vbo_line)
          self.update()
  
      """
          Sets the edge color based on the the cluster the vertices belongs to
          Propertymap is a VERTEXPROPERTYMAP since the color of the edges is based
          on the clusters the edges belong to.
      """    
      def color_edges(self, G, propertymap="clusters"):
          if propertymap == "clusters":
              for e in G.edges():
                  if G.vertex_properties[propertymap][e.source()] == G.vertex_properties[propertymap][e.target()]:
                      G.edge_properties["RGBA"][e] = G.vertex_properties["RGBA"][e.source()]
                  else:
                      G.edge_properties["RGBA"][e] = [0.0, 0.0, 0.0, 0.8]
  
  
      """
          Helper function that generates the framebuffer object that stores the vertices
          Generates the vertex buffer based on the graph G that is passed to the function
          Sets the color, generates the graph and subgraph color if necessary.
      """
      def gen_vertex_vbo(self, G):
          color = G.vertex_properties["RGBA"].get_2d_array(range(4)).T
          size = nwt.Network.map_vertices_to_range(G, [30*self.pixel_scale, 8*self.pixel_scale], 'degree').get_array()
  
          position = G.vertex_properties["pos"].get_2d_array(range(3)).T
          #for p in range(position.shape[0]):
          #    position[p][0] = position[p][0] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][0]
          #    position[p][1] = position[p][1] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][1]
          #    position[p][2] = position[p][2] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][2]
          #G.vertex_properties["pos"] = G.new_vertex_property("vector<double>", vals = position)
          edges = G.get_edges();
          edges = edges[:, 0:2]
          #width = nwt.Network.map_edges_to_range(G, [1*self.pixel_scale, 5*self.pixel_scale], 'volume').get_array()
          #ecolor = G.edge_properties["RGBA"].get_2d_array(range(4)).T
  
          self.data = np.zeros(G.num_vertices(), dtype=[('a_position', np.float32, 3),
                    ('a_fg_color', np.float32, 4),
                    ('a_bg_color', np.float32, 4),
                    ('a_size', np.float32, 1),
                    ('a_linewidth', np.float32, 1),
                    ('a_unique_id', np.float32, 4),
                    ('a_selection', np.float32, 1),
                    ])
  
          #self.edges = edges.astype(np.uint32)
          self.data['a_position'] = position
          #fg color is the color of the ring
          self.data['a_fg_color'] = 0, 0, 0, 1
          self.data['a_bg_color'] = color
          self.data['a_size'] = size
          self.data['a_linewidth'] = 4.*self.pixel_scale
          self.data['a_unique_id'] = self.gen_vertex_id(G)
          self.data['a_selection'] = G.vertex_properties["selection"].get_array()
          #self.data['a_graph_size'] = [bbu-bbl]
  
6eb102f5   Pavel Govyadinov   Fixed issue cause...
356
          self.program['u_graph_size'] = [self.bbu-self.bbl]
9f9f1788   Pavel Govyadinov   clead up version ...
357
358
359
360
361
362
363
364
365
366
367
368
  
          self.vbo = gloo.VertexBuffer(self.data)
          self.gen_line_vbo(G)
          if(self.subgraphs):
              self.vbo_s = gloo.VertexBuffer(self.clusters)
              self.index_s = gloo.IndexBuffer(self.edges_s)
          #self.index = gloo.IndexBuffer(self.edges)
          self.program_e.bind(self.vbo_line)
          self.program.bind(self.vbo)
          if(self.subgraphs):
              #self.program_e_s.bind(self.vbo_s)
              self.program_s.bind(self.vbo_s)
6eb102f5   Pavel Govyadinov   Fixed issue cause...
369
370
          if DEBUG:
              print(self.view)
9f9f1788   Pavel Govyadinov   clead up version ...
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
          self.update()
  
      """
          Helper function that creates colored "block" lines based on the edges
          in the graph. Generates the framebuffer object and fills it with the relavant data.
          Note that each line segment is saved as a two triangles that share the same
          two points on the centerline, but are offset according to the normal of the
          line segmente to control thickness dynamically.
      """    
      def gen_line_vbo(self, G):
          #Set the data.
          self.line_data = np.zeros(G.num_edges()*4, dtype=[('a_position', np.float32, 3),
                                    ('a_normal', np.float32, 2),
                                    ('a_fg_color', np.float32, 4),
                                    ('a_linewidth', np.float32, 1),
                                    ])
          self.edges = np.random.randint(size=(G.num_edges()*2, 3), low=0,
                                    high=(G.num_edges()-1)).astype(np.uint32)
          color = G.edge_properties["RGBA"].get_2d_array(range(4)).T
          edges = G.get_edges()
          #size need to be changed to the size based on the current property map
          size = nwt.Network.map_vertices_to_range(G, [1.0, 0.5], 'degree').get_array()
          for e in range(edges.shape[0]):
              idx = int(4*edges[e][2])
              p0 = G.vertex_properties["pos"][G.vertex(edges[e][0])]
              p1 = G.vertex_properties["pos"][G.vertex(edges[e][1])]
              d = np.subtract(p1, p0)
              #d_norm = np.multiply(d, 1/np.sqrt(np.power(d[0],2) + np.power(d[1],2)))
              d_norm = d[0:2]
              d_norm = d_norm / np.sqrt(np.power(d_norm[0],2) + np.power(d_norm[1],2))
              norm = np.zeros((2,), dtype=np.float32)
              norm[0] = d_norm[1]
              norm[1] = d_norm[0]*-1
              #print(np.sqrt(norm[0]*norm[0] + norm[1]*norm[1]))
              #thickness = G.edge_properties["thickness"][e]
              thickness = 1.0
              self.edge_dict[int(edges[e][0]), int(edges[e][1])] = int(edges[e][2])
              self.line_data['a_position'][idx] = p0
              self.line_data['a_normal'][idx] = norm
              self.line_data['a_fg_color'][idx] = color[edges[e][2]]
              #a_linewidth is a vector.
              self.line_data['a_linewidth'][idx] = size[edges[e][0]]
  
              self.line_data['a_position'][idx+1] = p1
              self.line_data['a_normal'][idx+1] = norm
              self.line_data['a_fg_color'][idx+1] = color[edges[e][2]]
              self.line_data['a_linewidth'][idx+1] = size[edges[e][1]]
  
              self.line_data['a_position'][idx+2] = p0
              self.line_data['a_normal'][idx+2] = -norm
              self.line_data['a_fg_color'][idx+2] = color[edges[e][2]]
              self.line_data['a_linewidth'][idx+2] = size[edges[e][0]]
  
              self.line_data['a_position'][idx+3] = p1
              self.line_data['a_normal'][idx+3] = -norm
              self.line_data['a_fg_color'][idx+3] = color[edges[e][2]]
              self.line_data['a_linewidth'][idx+3] = size[edges[e][1]]
  
              self.edges[e*2] = [idx, idx+1, idx+3]
              self.edges[e*2+1] = [idx, idx+2, idx+3]
          
          #Set the buffer object and update the shader programs.
          self.program_e = gloo.Program(vs, fs)
          #self.program_e['l_color'] = self.linecolor.astype(np.float32)
          self.vbo_line = gloo.VertexBuffer(self.line_data)
          self.index = gloo.IndexBuffer(self.edges)
          self.program_e['u_size'] = 1
          self.program_e['u_model'] = self.model
          self.program_e['u_view'] = self.view
          self.program_e['u_projection'] = self.projection
          self.program_e.bind(self.vbo_line)
  
  
      """
          Helper function that generates the edges between the cluster in the layout.
          Color is based on the cluster source/target color and transitions between the
          two.
      """
      def gen_cluster_line_vbo(self, G):
          #create a graph that stores the edges of between the clusters
          self.G_cluster = nwt.gt.Graph(directed=False)
          self.G_cluster.vertex_properties["pos"] = self.G_cluster.new_vertex_property("vector<double>", val=np.zeros((3,1), dtype=np.float32))
          self.G_cluster.vertex_properties["RGBA"] = self.G_cluster.new_vertex_property("vector<double>", val=np.zeros((4,1), dtype=np.float32))
          for v in range(len(self.cluster_pos)):
              self.G_cluster.add_vertex()
              self.G_cluster.vertex_properties["pos"][self.G_cluster.vertex(v)] = np.asarray(self.cluster_pos[v], dtype=np.float32)
          self.G_cluster.edge_properties["weight"] = self.G_cluster.new_edge_property("int", val = 0)
          #for each edge in the original graph, generate appropriate subgraph edges without repretiions
          #i.e. controls the thichness of the edges in the subgraph view.
          for e in G.edges():
              #if the source and target cluster is not equal to each other
              #add an inter subgraph edge.
              if(G.vertex_properties["clusters"][e.source()] != G.vertex_properties["clusters"][e.target()]):
                  #temp_e.append([G.vertex_properties["clusters"][e.source()], G.vertex_properties["clusters"][e.target()]])
                  self.G_cluster.add_edge(self.G_cluster.vertex(G.vertex_properties["clusters"][e.source()]), \
                                           self.G_cluster.vertex(G.vertex_properties["clusters"][e.target()]))
                  self.G_cluster.edge_properties["weight"][self.G_cluster.edge(self.G_cluster.vertex(G.vertex_properties["clusters"][e.source()]), \
                                                 self.G_cluster.vertex(G.vertex_properties["clusters"][e.target()]))] += 1
                  self.G_cluster.vertex_properties["RGBA"][self.G_cluster.vertex(G.vertex_properties["clusters"][e.source()])]    \
                                          = G.vertex_properties["RGBA"][e.source()]
                  self.G_cluster.vertex_properties["RGBA"][self.G_cluster.vertex(G.vertex_properties["clusters"][e.target()])]    \
                                          = G.vertex_properties["RGBA"][e.target()]
  
          self.cluster_line_data = np.zeros(self.G_cluster.num_edges()*4, dtype=[('a_position', np.float32, 3),
                            ('a_normal', np.float32, 2),
                            ('a_fg_color', np.float32, 4),
                            ('a_linewidth', np.float32, 1),
                            ])
          self.cluster_edges = np.random.randint(size=(self.G_cluster.num_edges()*2, 3), low=0,
                                    high=(G.num_edges()-1)).astype(np.uint32)
  
          edges = self.G_cluster.get_edges()
          #size need to be changed to the size based on the current property map
          size = nwt.Network.map_edges_to_range(self.G_cluster, [1.0, 0.5], 'weight').get_array()
          color = self.G_cluster.vertex_properties["RGBA"].get_2d_array(range(4)).T
          #generate the vertex buffer and the connections buffer.
          for e in range(edges.shape[0]):
              idx = int(4*edges[e][2])
              p0 = self.G_cluster.vertex_properties["pos"][self.G_cluster.vertex(edges[e][0])]
              p1 = self.G_cluster.vertex_properties["pos"][self.G_cluster.vertex(edges[e][1])]
              d = np.subtract(p1, p0)
              #d_norm = np.multiply(d, 1/np.sqrt(np.power(d[0],2) + np.power(d[1],2)))
              d_norm = d[0:2]
              d_norm = d_norm / np.sqrt(np.power(d_norm[0],2) + np.power(d_norm[1],2))
              norm = np.zeros((2,), dtype=np.float32)
              norm[0] = d_norm[1]
              norm[1] = d_norm[0]*-1
              #print(np.sqrt(norm[0]*norm[0] + norm[1]*norm[1]))
              #thickness = G.edge_properties["thickness"][e]
              self.cluster_dict[int(edges[e][0]), int(edges[e][1])] = int(edges[e][2])
              self.cluster_line_data['a_position'][idx] = p0
              self.cluster_line_data['a_normal'][idx] = norm
              self.cluster_line_data['a_fg_color'][idx] = color[edges[e][0]]
              self.cluster_line_data['a_linewidth'][idx] = size[e]
  
              self.cluster_line_data['a_position'][idx+1] = p1
              self.cluster_line_data['a_normal'][idx+1] = norm
              self.cluster_line_data['a_fg_color'][idx+1] = color[edges[e][1]]
              self.cluster_line_data['a_linewidth'][idx+1] = size[e]
  
              self.cluster_line_data['a_position'][idx+2] = p0
              self.cluster_line_data['a_normal'][idx+2] = -norm
              self.cluster_line_data['a_fg_color'][idx+2] = color[edges[e][0]]
              self.cluster_line_data['a_linewidth'][idx+2] = size[e]
  
              self.cluster_line_data['a_position'][idx+3] = p1
              self.cluster_line_data['a_normal'][idx+3] = -norm
              self.cluster_line_data['a_fg_color'][idx+3] = color[edges[e][1]]
              self.cluster_line_data['a_linewidth'][idx+3] = size[e]
  
              self.cluster_edges[e*2] = [idx, idx+1, idx+3]
              self.cluster_edges[e*2+1] = [idx, idx+2, idx+3]
  
  
          self.program_e_s = gloo.Program(vs_s, fs_s)
          self.index_clusters_s = gloo.IndexBuffer(self.cluster_edges)
          self.vbo_cluster_lines = gloo.VertexBuffer(self.cluster_line_data)
  
          self.program_e_s['u_size'] = 1
          self.program_e_s['u_model'] = self.model
          self.program_e_s['u_view'] = self.view
          self.program_e_s['u_projection'] = self.projection
          self.program_e_s.bind(self.vbo_cluster_lines)
  
  
      """
          Updates the vertex buffers based on the current position of the cluster.
          Updates it's position.    
      """
      def update_cluster_line_vbo(self):
  
          for v in range(len(self.cluster_pos)):
              self.G_cluster.vertex_properties["pos"][self.G_cluster.vertex(v)] = np.asarray(self.cluster_pos[v], dtype=np.float32)
          #OPTIMIZE HERE to update only one cluster at a time.
          edges = self.G_cluster.get_edges()
          #size need to be changed to the size based on the current property map
          size = nwt.Network.map_edges_to_range(self.G_cluster, [1.0, 0.5], 'weight').get_array()
          color = self.G_cluster.vertex_properties["RGBA"].get_2d_array(range(4)).T
          for e in range(edges.shape[0]):
              idx = int(4*edges[e][2])
              p0 = self.G_cluster.vertex_properties["pos"][self.G_cluster.vertex(edges[e][0])]
              p1 = self.G_cluster.vertex_properties["pos"][self.G_cluster.vertex(edges[e][1])]
              d = np.subtract(p1, p0)
              #d_norm = np.multiply(d, 1/np.sqrt(np.power(d[0],2) + np.power(d[1],2)))
              d_norm = d[0:2]
              d_norm = d_norm / np.sqrt(np.power(d_norm[0],2) + np.power(d_norm[1],2))
              norm = np.zeros((2,), dtype=np.float32)
              norm[0] = d_norm[1]
              norm[1] = d_norm[0]*-1
              #print(np.sqrt(norm[0]*norm[0] + norm[1]*norm[1]))
              #thickness = G.edge_properties["thickness"][e]
              self.cluster_dict[int(edges[e][0]), int(edges[e][1])] = int(edges[e][2])
              self.cluster_line_data['a_position'][idx] = p0
              self.cluster_line_data['a_normal'][idx] = norm
              self.cluster_line_data['a_fg_color'][idx] = color[edges[e][0]]
              self.cluster_line_data['a_linewidth'][idx] = size[e]
  
              self.cluster_line_data['a_position'][idx+1] = p1
              self.cluster_line_data['a_normal'][idx+1] = norm
              self.cluster_line_data['a_fg_color'][idx+1] = color[edges[e][1]]
              self.cluster_line_data['a_linewidth'][idx+1] = size[e]
  
              self.cluster_line_data['a_position'][idx+2] = p0
              self.cluster_line_data['a_normal'][idx+2] = -norm
              self.cluster_line_data['a_fg_color'][idx+2] = color[edges[e][0]]
              self.cluster_line_data['a_linewidth'][idx+2] = size[e]
  
              self.cluster_line_data['a_position'][idx+3] = p1
              self.cluster_line_data['a_normal'][idx+3] = -norm
              self.cluster_line_data['a_fg_color'][idx+3] = color[edges[e][1]]
              self.cluster_line_data['a_linewidth'][idx+3] = size[e]
  
          self.program_e_s = gloo.Program(vs_s, fs_s)
          self.index_clusters_s = gloo.IndexBuffer(self.cluster_edges)
          self.vbo_cluster_lines = gloo.VertexBuffer(self.cluster_line_data)
  
          self.program_e_s['u_size'] = 1
          self.program_e_s['u_model'] = self.model
          self.program_e_s['u_view'] = self.view
          self.program_e_s['u_projection'] = self.projection
          self.program_e_s.bind(self.vbo_cluster_lines)
  
      """
          Genererates a unique index for every vertex.
      """    
      def gen_vertex_id(self, G):
          self.color_dict = {}
          base = [0, 0, 0, 255]
          idx = 0
          #colors = cm.get_cmap('Wistia', G.num_vertices()*2)
          v_id = np.zeros((G.num_vertices(), 4), dtype=np.float32)
          for v in G.vertices():
              color = np.multiply(base, 1/255.0)
              v_id[int(v)] = color
              self.color_dict[tuple(color)] = int(v)
              idx += 1
              base = [int(idx/(255*255)), int((idx/255)%255), int(idx%255), 255]
  
          return(v_id)
  
      """
          Generates a unique index for every cluster.
      """
      def gen_cluster_id(self, G):
          self.cluster_dict = {}
          base = [0, 0, 0, 255]
          idx = 0
          #colors = cm.get_cmap('Wistia', G.num_vertices()*2)
          v_id = np.zeros((self.n_c, 4), dtype=np.float32)
          for v in range(self.n_c):
              color = np.multiply(base, 1/255.0)
              v_id[int(v)] = color
              self.cluster_dict[tuple(color)] = int(v)
              idx += 1
              base = [int(idx/(255*255)), int((idx/255)%255), int(idx%255), 255]
  
          return(v_id)
  
  
      """
          Generates the bounding box of the radial glyph.
      """
      def gen_cluster_coords(self, center, diameter):
          radius = diameter/2.0
          top = center[1]+radius
          bottom = center[1]-radius
          left = center[0]-radius
          right = center[0]+radius
  
          positions = [[right, bottom, center[2]],
                      [right, top, center[2]],
                      [left, top, center[2]],
                      [left, bottom, center[2]]]
  
  
          values = [[1.0, -1.0],
                    [1.0, 1.0,],
                    [-1.0, 1.0],
                    [-1.0, -1.0]]
          return positions, values
  
  
      """
          Layout algorithm that expands the cluster based on the location of the of the clusters
      """
      def expand_based_on_clusters(self, G, n):
          pos = G.vertex_properties["pos"].get_2d_array(range(3)).T
          for p in range(pos.shape[0]):
              pos[p][0] = pos[p][0] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][0]
              pos[p][1] = pos[p][1] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][1]
              pos[p][2] = pos[p][2] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][2]
          G.vertex_properties["pos"] = G.new_vertex_property("vector<double>", vals = pos)
          for i in range(n):
              index = 4*i
              #generate the vertex filter for this cluster
              num_v_in_cluster = len(np.argwhere(self.labels == i))
              vfilt = np.zeros([G.num_vertices(), 1], dtype="bool")
              vfilt[np.argwhere(self.labels == i)] = 1
              vfilt_prop = G.new_vertex_property("bool", vals = vfilt)
              G.set_vertex_filter(vfilt_prop)
  
              #get the filtered properties
              g = nwt.gt.Graph(G, prune=True, directed=False)
              positions = g.vertex_properties["pos"].get_2d_array(range(3)).T
              position = np.sum(positions, 0)/num_v_in_cluster
              p, v = self.gen_cluster_coords(position, np.sum(g.vertex_properties['degree'].get_array()))
              self.clusters['a_position'][index:index+4] = np.asarray(p, dtype=np.float32)
              self.clusters['a_value'][index:index+4] = np.asarray(v, dtype=np.float32)
              G.clear_filters()
              self.cluster_pos[i] = position
          color = G.vertex_properties["RGBA"].get_2d_array(range(4)).T
          size = nwt.Network.map_vertices_to_range(G, [30*self.pixel_scale, 8*self.pixel_scale], 'degree').get_array()
  
          position = G.vertex_properties["pos"].get_2d_array(range(3)).T
          #for p in range(position.shape[0]):
          #    position[p][0] = position[p][0] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][0]
          #    position[p][1] = position[p][1] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][1]
          #    position[p][2] = position[p][2] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][2]
          #G.vertex_properties["pos"] = G.new_vertex_property("vector<double>", vals = position)
          edges = G.get_edges();
          edges = edges[:, 0:2]
          #width = nwt.Network.map_edges_to_range(G, [1*self.pixel_scale, 5*self.pixel_scale], 'volume').get_array()
          #ecolor = G.edge_properties["RGBA"].get_2d_array(range(4)).T
  
          self.data = np.zeros(G.num_vertices(), dtype=[('a_position', np.float32, 3),
                    ('a_fg_color', np.float32, 4),
                    ('a_bg_color', np.float32, 4),
                    ('a_size', np.float32, 1),
                    ('a_linewidth', np.float32, 1),
                    ('a_unique_id', np.float32, 4),
                    ('a_selection', np.float32, 1),
                    ])
  
          #self.edges = edges.astype(np.uint32)
          self.data['a_position'] = position
          #fg color is the color of the ring
          self.data['a_fg_color'] = 0, 0, 0, 1
          self.data['a_bg_color'] = color
          self.data['a_size'] = size
          self.data['a_linewidth'] = 4.*self.pixel_scale
          self.data['a_unique_id'] = self.gen_vertex_id(G)
          self.data['a_selection'] = G.vertex_properties["selection"].get_array()
          #self.data['a_graph_size'] = [bbu-bbl]
  
          self.program['u_graph_size'] = [bbu-bbl]
          self.vbo = gloo.VertexBuffer(self.data)
          self.gen_line_vbo(G)
          if(self.subgraphs):
              self.vbo_s = gloo.VertexBuffer(self.clusters)
              self.index_s = gloo.IndexBuffer(self.edges_s)
          #self.index = gloo.IndexBuffer(self.edges)
          self.program_e.bind(self.vbo_line)
          self.program.bind(self.vbo)
          if(self.subgraphs):
              #self.program_e_s.bind(self.vbo_s)
              self.program_s.bind(self.vbo_s)
6eb102f5   Pavel Govyadinov   Fixed issue cause...
727
728
          if DEBUG:
              print(self.view)
9f9f1788   Pavel Govyadinov   clead up version ...
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
          self.update()
  
  
      """
          Function that generates the clusters for an unclustered graph
          These are to be represented by the arcs
      """    
      def gen_clusters(self, G, bbl, bbu, n_c = None, edge_metric = 'volume', vertex_metric = 'degree'):
  
          #Generate the clusters
          self.labels = nwt.Network.spectral_clustering(G,'length', n_clusters = n_c)
          #self.labels = nwt.Network.spectral_clustering(G,'length')
  
          #Add clusters as a vertex property
          G.vertex_properties["clusters"] = G.new_vertex_property("int", vals=self.labels)
          num_clusters = len(np.unique(self.labels))
          self.n_c = n_c
  
          #add colormap
          G.vertex_properties["RGBA"] = nwt.Network.map_property_to_color(G, G.vertex_properties["clusters"])
  
          #generate an empty property set for the clusters.
          self.clusters = np.zeros(num_clusters*4, dtype=[('a_position', np.float32, 3),
                        ('a_value', np.float32, 2),
                        ('a_bg_color', np.float32, 4),
                        ('a_cluster_color', np.float32, 4),
                        ('a_arc_length', np.float32, 1),
                        ('a_outer_arc_length', np.float32, 4),
                        ('a_unique_id', np.float32, 4),
                        ])
          self.edges_s = np.random.randint(size=(num_clusters*2, 3), low=0,
                                    high=4).astype(np.uint32)
          #fill the foreground color as halo
          #self.clusters['a_fg_color'] = 1., 1., 1., 0.0
          #self.clusters['a_linewidth'] = 4.*self.pixel_scale
  
          G.vertex_properties["pos"] = nwt.gt.sfdp_layout(G, groups = G.vertex_properties["clusters"], pos = G.vertex_properties["pos"])
          temp = [];
          temp_pos = [];
          #Find the global total of the metric.
          global_metric = np.sum(G.edge_properties[edge_metric].get_array(), 0)
          unique_color = self.gen_cluster_id(G)
  
          #generate the property values for every cluster
          for i in range(num_clusters):
              idx = 4*i
              #generate the vertex filter for this cluster
              num_v_in_cluster = len(np.argwhere(self.labels == i))
              vfilt = np.zeros([G.num_vertices(), 1], dtype="bool")
              vfilt[np.argwhere(self.labels == i)] = 1
              vfilt_prop = G.new_vertex_property("bool", vals = vfilt)
              G.set_vertex_filter(vfilt_prop)
  
              #get the filtered properties
              g = nwt.gt.Graph(G, prune=True, directed=False)
              positions = g.vertex_properties["pos"].get_2d_array(range(3)).T
              position = np.sum(positions, 0)/num_v_in_cluster
  
              #calculate the arclength for the global statistic
              arc_length = np.sum(g.edge_properties[edge_metric].get_array(), 0)/global_metric*np.pi*2
              arc_length_vertex = np.ones((4,1), dtype = np.float32)
              array = g.vertex_properties[vertex_metric].get_array()
  
              #calculate metric distribution and turn it into arc_lengths
              t_vertex_metric = np.sum(array)
              arc_length_vertex[0] = np.sum(array < 2)/t_vertex_metric
              arc_length_vertex[1] = np.sum(array == 2)/t_vertex_metric
              arc_length_vertex[2] = np.sum(array == 3)/t_vertex_metric
              arc_length_vertex[3] = np.sum(array > 3)/t_vertex_metric
  
              #arc_length_vertex = np.asarray(arc_length_vertex, dtype = np.float32)
              #arc_length_vertex = (max(arc_length_vertex) - min(arc_length_vertex)) \
              #* (arc_length_vertex- min(arc_length_vertex))
              for j in range(len(arc_length_vertex)):
                  if j != 0:
                      arc_length_vertex[j] += arc_length_vertex[j-1]
6eb102f5   Pavel Govyadinov   Fixed issue cause...
805
806
              if DEBUG:
                  print("arc_length before ", arc_length_vertex, " and sum to ", sum(arc_length_vertex))
9f9f1788   Pavel Govyadinov   clead up version ...
807
808
809
              arc_length_vertex = np.asarray(arc_length_vertex, dtype = np.float32)
              arc_length_vertex = (np.pi - -np.pi)/(max(arc_length_vertex) - min(arc_length_vertex)) \
              * (arc_length_vertex- min(arc_length_vertex)) + (-np.pi)
6eb102f5   Pavel Govyadinov   Fixed issue cause...
810
811
              if DEBUG:
                  print(arc_length_vertex)
9f9f1788   Pavel Govyadinov   clead up version ...
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
              #print(arc_length)
  
  
              temp_pos.append(position)
  
              #generate the color for every vertex,
              #since all vertices belong to the same cluster we can check only
              #one vertex for the cluster color.
  
              self.clusters['a_cluster_color'][idx:idx+4] = g.vertex_properties["RGBA"][g.vertex(0)]
              self.clusters['a_bg_color'][idx:idx+4] = [0.1, 0.1, 0.1, 1.0]
              self.clusters['a_unique_id'][idx:idx+4] = unique_color[i]
  
              #The arc-length representing one global metric.
              self.clusters['a_arc_length'][idx:idx+4] = arc_length
              self.clusters['a_outer_arc_length'][idx:idx+4] = arc_length_vertex[:].T
  
              temp.append(np.sum(g.vertex_properties['degree'].get_array()))
              G.clear_filters()
6eb102f5   Pavel Govyadinov   Fixed issue cause...
831
832
          if DEBUG:
              print(self.clusters['a_outer_arc_length'])
9f9f1788   Pavel Govyadinov   clead up version ...
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
          maximum = max(temp)
          minimum = min(temp)
          if len(temp) > 1:
              temp = ((temp-minimum)/(maximum-minimum)*(60*self.pixel_scale)+20*self.pixel_scale)
          else:
              temp = [60*self.pixel_scale]
          for i in range(num_clusters):
              index = i*4
              index_t = i*2
              p, v = self.gen_cluster_coords(temp_pos[i], temp[i]*2.0)
              self.clusters['a_position'][index:index+4] = np.asarray(p, dtype=np.float32)
              self.clusters['a_value'][index:index+4] = np.asarray(v, dtype=np.float32)
  
              self.edges_s[index_t] = [index, index+1, index+2]
              self.edges_s[index_t+1] = [index, index+2, index+3]
              #self.edges_s[i][0:4] = np.asarray(range(index, index+4), dtype=np.uint32)
              #self.edges_s[i]
          self.cluster_pos = temp_pos
          #self.expand_based_on_clusters(G, self.n_c)
          G.clear_filters()
  #        self.edges_s[1][0:4] = np.asarray(range(0, 0+4), dtype=np.uint32)
  #        self.edges_s[1][4] = 0
  #        self.edges_s[1][5] = 0+2
  #
  #        self.edges_s[0][0:4] = np.asarray(range(index, index+4), dtype=np.uint32)
  #        self.edges_s[0][4] = index
  #        self.edges_s[0][5] = index+2
          #self.clusters['a_size'] = temp
          self.gen_cluster_line_vbo(G)
          self.program_s['u_graph_size'] = [bbu-bbl]
          #if len(temp_e) > 0:
          #    self.edges_s = np.unique(np.asarray(temp_e, np.uint32), axis=0)
          #else:
          #    self.edges_s = []
          #print(self.edges_s)
  
  
      """
          Function that expands that generates the layout and updates the buffer
      
      """
      def expand_clusters(self, G, n_c):
          self.expand_based_on_clusters(G, n_c)
          self.gen_cluster_line_vbo(G)
          if(self.subgraphs):
              self.vbo_s = gloo.VertexBuffer(self.clusters)
              self.index_s = gloo.IndexBuffer(self.edges_s)
          self.program_e.bind(self.vbo_line)
          self.program.bind(self.vbo)
          if(self.subgraphs):
              self.program_s.bind(self.vbo_s)
6eb102f5   Pavel Govyadinov   Fixed issue cause...
884
885
          if DEBUG:
              print(self.view)
9f9f1788   Pavel Govyadinov   clead up version ...
886
887
888
889
890
891
892
          self.update()
  
      """
          Loads the data G and generates all the buffers necessary as well as performs
          spectral clustering on the graph passed if the subgraph is set to true.
      """
      def set_data(self, G, bbl, bbu, subgraph=True):
6eb102f5   Pavel Govyadinov   Fixed issue cause...
893
894
          if DEBUG:
              print("Setting data")
9f9f1788   Pavel Govyadinov   clead up version ...
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
          self.G = G
          self.bbl = bbl
          self.bbu = bbu
          clear(color=True, depth=True)
          self.subgraphs = True
          self.current_color = "clusters"
          if(subgraph==True):
              self.gen_clusters(G, bbl, bbu, n_c=19)
  
              #color based on clusters
              self.color_edges(G)
  
          color = G.vertex_properties["RGBA"].get_2d_array(range(4)).T
          size = nwt.Network.map_vertices_to_range(G, [30*self.pixel_scale, 8*self.pixel_scale], 'degree').get_array()
  
          position = G.vertex_properties["pos"].get_2d_array(range(3)).T
          #for p in range(position.shape[0]):
          #    position[p][0] = position[p][0] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][0]
          #    position[p][1] = position[p][1] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][1]
          #    position[p][2] = position[p][2] + self.clusters["a_position"][G.vertex_properties["clusters"][G.vertex(p)]][2]
          #G.vertex_properties["pos"] = G.new_vertex_property("vector<double>", vals = position)
          edges = G.get_edges();
          edges = edges[:, 0:2]
          #width = nwt.Network.map_edges_to_range(G, [1*self.pixel_scale, 5*self.pixel_scale], 'volume').get_array()
          #ecolor = G.edge_properties["RGBA"].get_2d_array(range(4)).T
  
          self.data = np.zeros(G.num_vertices(), dtype=[('a_position', np.float32, 3),
                    ('a_fg_color', np.float32, 4),
                    ('a_bg_color', np.float32, 4),
                    ('a_size', np.float32, 1),
                    ('a_linewidth', np.float32, 1),
                    ('a_unique_id', np.float32, 4),
                    ('a_selection', np.float32, 1),
                    ])
  
          #self.edges = edges.astype(np.uint32)
          self.data['a_position'] = position
          #fg color is the color of the ring
          self.data['a_fg_color'] = 0, 0, 0, 1
          self.data['a_bg_color'] = color
          self.data['a_size'] = size
          self.data['a_linewidth'] = 4.*self.pixel_scale
          self.data['a_unique_id'] = self.gen_vertex_id(G)
          self.data['a_selection'] = G.vertex_properties["selection"].get_array()
          #self.data['a_graph_size'] = [bbu-bbl]
  
          self.program['u_graph_size'] = [bbu-bbl]
  
          self.vbo = gloo.VertexBuffer(self.data)
          self.gen_line_vbo(G)
          #self.gen_cylinder_vbo(G)
          if(self.subgraphs):
              self.vbo_s = gloo.VertexBuffer(self.clusters)
              self.index_s = gloo.IndexBuffer(self.edges_s)
          #self.index = gloo.IndexBuffer(self.edges)
          self.program_e.bind(self.vbo_line)
          self.program.bind(self.vbo)
          if(self.subgraphs):
              #self.program_e_s.bind(self.vbo_s)
              self.program_s.bind(self.vbo_s)
6eb102f5   Pavel Govyadinov   Fixed issue cause...
955
956
          if DEBUG:
              print(self.view)
9f9f1788   Pavel Govyadinov   clead up version ...
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
          self.update()
  
      """
          Function that changes and redraws the buffer during a resize event.
      """
      def on_resize(self, event):
          set_viewport(0, 0, *event.physical_size)
          self.fbo = gloo.FrameBuffer(color=gloo.RenderBuffer(self.size[::-1]), depth=gloo.RenderBuffer(self.size[::-1]))
  
  
      """
          Overloaded function that is called during every self.update() call
      """
      def on_draw(self, event):
          clear(color='white', depth=True)
          self.program_e.draw('triangles', indices=self.index)
          self.program.draw('points')
          #self.program_e.draw('lines')
          if(self.subgraphs):
              self.program_e_s.draw('triangles', indices=self.index_clusters_s)
              self.program_s.draw('triangles', indices=self.index_s)
  
      """
          Function performed during a mouse click (either right or left)
          gets the unique id of the object drawn underneath the cursor
          handles the cases depending on whether the click happened to a cluster
          or a vertex. Edges are not interactable (yet)
      """
      def get_clicked_id(self, event, clusters = False):
          #Get the framebuffer coordinates of the click
          coord = self.transforms.get_transform('canvas', 'framebuffer').map(event.pos)
  
          #get the framebuffer where each element is rendered as a unique color
          size = self.size;
          self.fbo = gloo.FrameBuffer(color=gloo.RenderBuffer(size[::-1]), depth=gloo.RenderBuffer(size[::-1]))
          buff = gloo.read_pixels((0,0,self.physical_size[0], self.physical_size[1]))
          #imsave("test_ori.png", buff)
          self.fbo.activate()
          if clusters == False:
              self.program['u_picking'] = True
              clear(color='white', depth=True)
              self.program.draw('points')
              buff = gloo.read_pixels((0,0,self.physical_size[0], self.physical_size[1]))
              #imsave("test.png", buff)
  
              #return to the original state
              self.fbo.deactivate()
              self.program['u_picking'] = False
          else:
              self.program_s['u_picking'] = True
              clear(color='white', depth=True)
              self.program_s.draw('triangles', indices=self.index_s)
              buff = gloo.read_pixels((0,0,self.physical_size[0], self.physical_size[1]))
              #imsave("test.png", buff)
  
              #return to the original state
              self.fbo.deactivate()
              self.program_s['u_picking'] = False
  
          #print(buff[self.physical_size[1]-int(coord[1]), int(coord[0])])
  
          #Get the color under the click.
          #Keep in mind that the buff is y, x
          #And 0,0 is in the top RIGHT corner.
          #IGNORE THE DOCUMENTATION
          color = np.multiply(buff[self.physical_size[1]-int(coord[1]), int(coord[0])], 1/255.0)
          #if (tuple(color) not in self.color_dict):
          #    print("clicked on nothing")
          #else:
          #    print(self.color_dict[tuple(color)])
  
          #reset the original buffer
          self.update()
  
          #Return the element under the click.
          if clusters == False:
              if(tuple(color) not in self.color_dict):
                  return None
              else:
                  return self.color_dict[tuple(color)]
          else:
              if(tuple(color) not in self.cluster_dict):
                  return None
              else:
                  return self.cluster_dict[tuple(color)]
  
  
      """
          Top level handle-mouse presee event for either left or right click
      """
      def on_mouse_press(self, event):
  
          def update_view():
              self.location = event.pos
              self.program['u_view'] = self.view
              self.program_e['u_view'] = self.view
              self.program_s['u_view'] = self.view
              self.program_e_s['u_view'] = self.view
              self.down = True
  
  
  #        if(event.button == 2):
  ##            menu = QtWidgets.QMenu(self.parent)
  ##            NS = menu.addAction('Node Size')
  ##            NC = menu.addAction('Node Color')
  ##            action = menu.exec_(self.parent.globalPos())
  ##            if action == NS:
  #            print("right_click")
  #            #if menu.exec_(event.globalPos()):
  #            #    print(item.text())
          if(event.button == 1):
              if(self.view[0][0] > 0.0010):
                  c_id = self.get_clicked_id(event)
                  if(c_id != None):
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1071
                      self.original_point = self.G.vertex_properties["pos"][self.G.vertex(c_id)]
9f9f1788   Pavel Govyadinov   clead up version ...
1072
1073
1074
1075
1076
1077
1078
1079
1080
                      self.location = event.pos
                      self.moving = True
                      self.down = True
                      self.c_id = [c_id]
                  else:
                      update_view()
                      #print("Clicked on:", event.pos)
              else:
                  c_id = self.get_clicked_id(event, True)
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1081
1082
                  if DEBUG:
                      print(c_id)
9f9f1788   Pavel Govyadinov   clead up version ...
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
                  if(c_id != None):
                      self.original_point = self.cluster_pos[c_id]
                      self.location = event.pos
                      self.moving = True
                      self.down = True
                      self.c_id = [c_id]
                      self.moving_cluster = True
                  else:
                      update_view()
  
  
      """
          Handles the double click event that it responsible for path selection.
          Generates paths our of consecutive paths out of the selected vertices.
      """
      def on_mouse_double_click(self, event):
          def update_vbo(self):
              self.vbo = gloo.VertexBuffer(self.data)
              self.program.bind(self.vbo)
              self.update()
  
          def add_to_path(self, source, target):
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1105
              vl, el = nwt.gt.graph_tool.topology.shortest_path(self.G, self.G.vertex(source), self.G.vertex(target), weights=self.G.edge_properties["av_radius"])
9f9f1788   Pavel Govyadinov   clead up version ...
1106
1107
              for v in vl:
                  if(int(v) not in self.path):
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1108
                      self.G.vertex_properties["selection"][v] = 2.0
9f9f1788   Pavel Govyadinov   clead up version ...
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
                      self.data['a_selection'][int(v)] = 2.0
                  if(int(v) not in self.full_path):
                      self.full_path.append(int(v))
  
          if (event.button == 1):
              if(self.view[0][0] > 0.0010):
                  c_id = self.get_clicked_id(event)
              if(c_id != None):
                  #check whether this is the first node to be selected
                  if(self.pathing == False):
                      #if it is, select that node and turn the pathing variable on.
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1120
                      self.G.vertex_properties["selection"][self.G.vertex(c_id)] = 1.0
9f9f1788   Pavel Govyadinov   clead up version ...
1121
1122
1123
1124
1125
1126
1127
                      self.pathing = True
                      if(c_id not in self.path):
                          self.path.append(c_id)
                          self.data['a_selection'][c_id] = 1.0
                          update_vbo(self)
                      print("I turned on the first node")
                  else:
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1128
1129
                      if(self.G.vertex_properties["selection"][self.G.vertex(c_id)] == 1.0):
                          self.G.vertex_properties["selection"][self.G.vertex(c_id)] = 0.0
9f9f1788   Pavel Govyadinov   clead up version ...
1130
1131
1132
1133
                          self.path.remove(c_id)
                          self.data['a_selection'][c_id] = 0.0
                          update_vbo(self)
                          print("I turned off a node")
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1134
1135
                      elif(self.G.vertex_properties["selection"][self.G.vertex(c_id)] == 0.0):
                          self.G.vertex_properties["selection"][self.G.vertex(c_id)] = 1.0
9f9f1788   Pavel Govyadinov   clead up version ...
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
                          if(c_id not in self.path):
                              self.path.append(c_id)
                              self.data['a_selection'][c_id] = 1.0
                              update_vbo(self)
                          print("I turned on a node")
                      if(len(self.path) >= 2):
                          for i in range(len(self.path)-1):
                              add_to_path(self, self.path[i], self.path[i+1])
                              update_vbo(self)
                              #THIS IS WHERE I LEFT IT OFF.
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1146
                      if(np.sum(self.G.vertex_properties["selection"].get_array()) == 0):
9f9f1788   Pavel Govyadinov   clead up version ...
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
                          self.pathing = False
  
  
  
  #                elif(np.sum(self.G.vertex_properties["selection"].get_array()) :
  #                    self.G.vertex_properties["selection"][self.G.vertex(c_id)] == False
                  print("clicked on: ", c_id, " ", self.path)
  
      """
          Resets the variables that are used during the pressdown and move events
      """
      def on_mouse_release(self, event):
          self.down = False
          self.moving = False
          self.moving_cluster = False
          self.c_id = []
          #self.location = event.pos
          #print("Clicked off:", event.pos)
  
      """
          used during the drag evern to update the position of the clusters
      """
      def update_cluster_position(self, G, pos, offset, c_id):
          v_pos = G.vertex_properties["pos"].get_2d_array(range(3)).T
          vertices = np.argwhere(self.labels == c_id)
          for v in range(vertices.shape[0]):
              idx = vertices[v][0]
              v_pos[idx][0] = v_pos[idx][0] + offset[0]
              v_pos[idx][1] = v_pos[idx][1] + offset[1]
              v_pos[idx][2] = v_pos[idx][2] + offset[2]
              self.data['a_position'][idx] = np.asarray([v_pos[idx][0], v_pos[idx][1], v_pos[idx][2]], dtype = np.float32)
              #update the edge data by finding all edges connected to the vertex
              vtx = self.G.vertex(idx)
              for e in vtx.all_edges():
                  d = np.subtract(G.vertex_properties["pos"][e.source()], G.vertex_properties["pos"][e.target()])
                  d_norm = d[0:2]
                  d_norm = d_norm / np.sqrt(np.power(d_norm[0],2) + np.power(d_norm[1],2))
                  norm = np.zeros((2,), dtype=np.float32)
                  norm[0] = d_norm[1]
                  norm[1] = d_norm[0]*-1
                  if (int(e.source()), int(e.target())) in self.edge_dict.keys():
                      index = int(self.edge_dict[int(e.source()), int(e.target())])
                      if vtx == int(e.source()):
                          self.line_data['a_position'][index*4]   = v_pos[idx]
                          self.line_data['a_position'][index*4+2] = v_pos[idx]
                          self.line_data['a_normal'][index*4] = norm
                          self.line_data['a_normal'][index*4+2] = -norm
                          self.line_data['a_normal'][index*4+1] = norm
                          self.line_data['a_normal'][index*4+3] = -norm
                      elif vtx == int(e.target()):
                          self.line_data['a_position'][index*4+1] = v_pos[idx]
                          self.line_data['a_position'][index*4+3] = v_pos[idx]
                          self.line_data['a_normal'][index*4] = norm
                          self.line_data['a_normal'][index*4+2] = -norm
                          self.line_data['a_normal'][index*4+1] = norm
                          self.line_data['a_normal'][index*4+3] = -norm
                  else:
                      index = int(self.edge_dict[int(e.target()), int(e.source())])
                      if vtx == int(e.target()):
                          self.line_data['a_position'][index*4]   = v_pos[idx]
                          self.line_data['a_position'][index*4+2] = v_pos[idx]
                          self.line_data['a_normal'][index*4] = norm
                          self.line_data['a_normal'][index*4+2] = -norm
                          self.line_data['a_normal'][index*4+1] = norm
                          self.line_data['a_normal'][index*4+3] = -norm
                      elif vtx == int(e.source()):
                          self.line_data['a_position'][index*4+1] = v_pos[idx]
                          self.line_data['a_position'][index*4+3] = v_pos[idx]
                          self.line_data['a_normal'][index*4] = norm
                          self.line_data['a_normal'][index*4+2] = -norm
                          self.line_data['a_normal'][index*4+1] = norm
                          self.line_data['a_normal'][index*4+3] = -norm
  
  
          G.vertex_properties["pos"] = G.new_vertex_property("vector<double>", vals = v_pos)
          index = 4*c_id
          #generate the vertex filter for this cluster
          vfilt = np.zeros([G.num_vertices(), 1], dtype="bool")
          vfilt[np.argwhere(self.labels == c_id)] = 1
          vfilt_prop = G.new_vertex_property("bool", vals = vfilt)
          G.set_vertex_filter(vfilt_prop)
  
          #get the filtered properties
          g = nwt.gt.Graph(G, prune=True, directed=False)
          p, v = self.gen_cluster_coords(pos, np.sum(g.vertex_properties['degree'].get_array()))
          self.clusters['a_position'][index:index+4] = np.asarray(p, dtype=np.float32)
          self.clusters['a_value'][index:index+4] = np.asarray(v, dtype=np.float32)
          G.clear_filters()
          self.cluster_pos[c_id] = pos
          self.original_point = pos
  
  
      """
          function that handles the mouse move event in a way that depends on a set
          of variables: state of the mouse button, the type of object selected and
          the number of objects.
      """
      def on_mouse_move(self, event):
          if(self.down == True):
              if(self.moving == True and self.moving_cluster == False):
                  if(len(self.c_id) < 2):
                      #Project into GLSpace and get before and after move coordinates
                      coord = self.transforms.get_transform('canvas', 'render').map(self.location)[:2]
                      coord2 = self.transforms.get_transform('canvas', 'render').map(event.pos)[:2]
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1251
                      cur_pos = self.G.vertex_properties["pos"][self.G.vertex(self.c_id[0])]
9f9f1788   Pavel Govyadinov   clead up version ...
1252
1253
1254
1255
1256
1257
1258
1259
                      #print(cur_pos, " Before")
  
                      #Adjust the position of the node based on the current view matrix.
                      cur_pos[0] = cur_pos[0] - (coord[0]-coord2[0])/self.view[0][0]
                      cur_pos[1] = cur_pos[1] - (coord[1]-coord2[1])/self.view[0][0]
  
                      #print(cur_pos, " After")
                      #Upload the changed data.
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1260
                      self.G.vertex_properties["pos"][self.G.vertex(self.c_id[0])] = cur_pos
9f9f1788   Pavel Govyadinov   clead up version ...
1261
1262
1263
1264
1265
                      self.data['a_position'][self.c_id[0]] = cur_pos
  
                      #update the edge data by finding all edges connected to the vertex
                      v = self.G.vertex(self.c_id[0])
                      for e in v.all_edges():
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1266
                          d = np.subtract(self.G.vertex_properties["pos"][e.source()], self.G.vertex_properties["pos"][e.target()])
9f9f1788   Pavel Govyadinov   clead up version ...
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
                          d_norm = d[0:2]
                          d_norm = d_norm / np.sqrt(np.power(d_norm[0],2) + np.power(d_norm[1],2))
                          norm = np.zeros((2,), dtype=np.float32)
                          norm[0] = d_norm[1]
                          norm[1] = d_norm[0]*-1
                          if (int(e.source()), int(e.target())) in self.edge_dict.keys():
                              idx = int(self.edge_dict[int(e.source()), int(e.target())])
                              if self.c_id[0] == int(e.source()):
                                  self.line_data['a_position'][idx*4] = cur_pos
                                  self.line_data['a_position'][idx*4+2] = cur_pos
                                  self.line_data['a_normal'][idx*4] = norm
                                  self.line_data['a_normal'][idx*4+2] = -norm
                                  self.line_data['a_normal'][idx*4+1] = norm
                                  self.line_data['a_normal'][idx*4+3] = -norm
                              elif self.c_id[0] == int(e.target()):
                                  self.line_data['a_position'][idx*4+1] = cur_pos
                                  self.line_data['a_position'][idx*4+3] = cur_pos
                                  self.line_data['a_normal'][idx*4] = norm
                                  self.line_data['a_normal'][idx*4+2] = -norm
                                  self.line_data['a_normal'][idx*4+1] = norm
                                  self.line_data['a_normal'][idx*4+3] = -norm
                          else:
                              idx = int(self.edge_dict[int(e.target()), int(e.source())])
                              if self.c_id[0] == int(e.target()):
                                  self.line_data['a_position'][idx*4] = cur_pos
                                  self.line_data['a_position'][idx*4+2] = cur_pos
                                  self.line_data['a_normal'][idx*4] = norm
                                  self.line_data['a_normal'][idx*4+2] = -norm
                                  self.line_data['a_normal'][idx*4+1] = norm
                                  self.line_data['a_normal'][idx*4+3] = -norm
                              elif self.c_id[0] == int(e.source()):
                                  self.line_data['a_position'][idx*4+1] = cur_pos
                                  self.line_data['a_position'][idx*4+3] = cur_pos
                                  self.line_data['a_normal'][idx*4] = norm
                                  self.line_data['a_normal'][idx*4+2] = -norm
                                  self.line_data['a_normal'][idx*4+1] = norm
                                  self.line_data['a_normal'][idx*4+3] = -norm
                      #self.line_data['a_position'][self.c_id[0]] =
                      self.vbo = gloo.VertexBuffer(self.data)
                      self.vbo_line = gloo.VertexBuffer(self.line_data)
                      #Bind the buffer and redraw.
                      self.program.bind(self.vbo)
                      self.program_e.bind(self.vbo_line)
                      #self.program.draw('points')
                      self.location = event.pos
                      self.update()
              elif(self.moving == True and self.moving_cluster == True):
                  if(len(self.c_id) < 2):
                      #Project into GLSpace and get before and after move coordinates
                      coord = self.transforms.get_transform('canvas', 'render').map(self.location)[:2]
                      coord2 = self.transforms.get_transform('canvas', 'render').map(event.pos)[:2]
                      cur_pos = np.zeros(self.cluster_pos[self.c_id[0]].shape, dtype = np.float32)
                      offset = np.zeros(self.cluster_pos[self.c_id[0]].shape, dtype = np.float32)
                      cur_pos[0] = self.cluster_pos[self.c_id[0]][0]
                      cur_pos[1] = self.cluster_pos[self.c_id[0]][1]
                      cur_pos[2] = self.cluster_pos[self.c_id[0]][2]
                      offset[0] = self.cluster_pos[self.c_id[0]][0]
                      offset[1] = self.cluster_pos[self.c_id[0]][1]
                      offset[2] = self.cluster_pos[self.c_id[0]][2]
  #                    ofset = self.cluster_pos[self.c_id[0]]
  
                      #Adjust the position of the node based on the current view matrix.
                      offset[0] = self.original_point[0] - cur_pos[0] - (coord[0]-coord2[0])/self.view[0][0]
                      offset[1] = self.original_point[1] - cur_pos[1] - (coord[1]-coord2[1])/self.view[0][0]
                      cur_pos[0] = cur_pos[0] - (coord[0]-coord2[0])/self.view[0][0]
                      cur_pos[1] = cur_pos[1] - (coord[1]-coord2[1])/self.view[0][0]
  
6eb102f5   Pavel Govyadinov   Fixed issue cause...
1334
                      self.update_cluster_position(self.G, cur_pos, offset, self.c_id[0])
9f9f1788   Pavel Govyadinov   clead up version ...
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
                      #self.original_point = cur_pos
                      self.vbo = gloo.VertexBuffer(self.data)
                      self.vbo_line = gloo.VertexBuffer(self.line_data)
                      #Bind the buffer and redraw.
                      self.program.bind(self.vbo)
                      self.program_e.bind(self.vbo_line)
                      #self.program.draw('points')
                      self.location = event.pos
                      if(self.subgraphs):
                          self.vbo_s = gloo.VertexBuffer(self.clusters)
                          self.program_s.bind(self.vbo_s)
                      self.update_cluster_line_vbo()
                      self.update()
  
  
              else:
              #print("Mouse at:", event.pos)
              #new_model = np.eye(4, dtype=np.float32)
                  coord = self.transforms.get_transform('canvas', 'render').map(self.location)[:2]
                  coord2 = self.transforms.get_transform('canvas', 'render').map(event.pos)[:2]
                  self.translate[0] += (coord[0]-coord2[0])/self.view[0][0]
                  self.translate[1] += (coord[1]-coord2[1])/self.view[1][1]
                  #self.view[3][0] = self.view[3][0]-(self.location[0]-event.pos[0])/10000.0
                  #self.view[3][1] = self.view[3][1]+(self.location[1]-event.pos[1])/10000.0
  
                  self.view = np.matmul(translate((self.translate[0], self.translate[1], 0)), scale((self.scale[0], self.scale[1], 0)))
  
                  self.program['u_view'] = self.view
                  self.program_e['u_view'] = self.view
                  self.program_s['u_view'] = self.view
                  self.program_e_s['u_view'] = self.view
                  self.location = event.pos
                  self.update()
  
      """
          Handles the mouse wheel zoom event.
      """
      def on_mouse_wheel(self, event):
  
          #print(self.view)
          #TO_DO IMPLEMENT ZOOM TO CURSOR
          #self.view[3][0] = self.view[3][0]-event.pos[0]/10000.0
          #self.view[3][1] = self.view[3][1]-event.pos[1]/10000.0
          #print(self.scale[0] , self.scale[0]*event.delta[1]*0.05)
          self.scale[0] = self.scale[0] + self.scale[0]*event.delta[1]*0.05
          self.scale[1] = self.scale[1] + self.scale[1]*event.delta[1]*0.05
  
          self.view = np.matmul(translate((self.translate[0], self.translate[1], 0)),
          scale((self.scale[0], self.scale[1], 0)))
  
          #self.view[0][0] = self.view[0][0]+self.view[0][0]*event.delta[1]*0.05
          #self.view[1][1] = self.view[1][1]+self.view[1][1]*event.delta[1]*0.05
          #print(self.view[0][0], " ",self.view[1][1])
          #print(self.view)
          self.program['u_view'] = self.view
          self.program_e['u_view'] = self.view
          self.program_s['u_view'] = self.view
          self.program_e_s['u_view'] = self.view
          #print(event.delta[1])
          self.update()