diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index 94a25f7..6b3c1e3 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -2,5 +2,6 @@
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index fcf8bb0..2a7d5c0 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -5,10 +5,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -20,13 +36,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
@@ -35,7 +102,7 @@
-
+
@@ -44,79 +111,10 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
@@ -125,10 +123,25 @@
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -138,11 +151,34 @@
CanvasRenderer
- new Data
stroke
window
req
+ getTi
+ json
+ MAth.max
+ ctx:
+ console.log
+ Data sa
+ backgr
+ white
+ setInte
+ sender.sta
+ random
+ 'move
+ flow
+ get
+ gl
+ console.l
+ MouseEventF
+ docum
+ .style
+ new Data
+ flowName
+
+
+
@@ -150,41 +186,51 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
@@ -210,6 +256,13 @@
+
+
+
+
+
+
+
@@ -236,10 +289,27 @@
-
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -259,6 +329,14 @@
+
+
+
+
+
+
+
+
@@ -271,16 +349,30 @@
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -293,6 +385,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -305,23 +458,36 @@
1554914345509
-
+
+
+
+
+
+
+
+
+ 1554992034761
+
+
+
+ 1554992034761
+
+
-
+
-
-
-
-
+
+
+
-
+
@@ -339,14 +505,11 @@
+
+
+
+
-
-
-
-
-
-
-
@@ -364,38 +527,141 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
@@ -414,68 +680,10 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -484,13 +692,78 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DataGatherer/src/data/Data.ts b/DataGatherer/src/data/Data.ts
deleted file mode 100644
index a0b4287..0000000
--- a/DataGatherer/src/data/Data.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-export class Data {
- private name: string;
- private data: any;
- private timestamp: number;
- private size: {
- width: number;
- height: number;
- };
-
- constructor(name: string, data: any, size: any, timestamp?: number) {
- this.name = name;
- this.data = data;
- this.timestamp = timestamp ? timestamp : Date.now();
- this.size = size;
- }
-
- public getName() {
- return this.name;
- }
-
- public getData() {
- return this.data;
- }
-
- public getTimestamp() {
- return this.timestamp;
- }
-
- public getSize() {
- return this.size;
- }
-}
diff --git a/DataGatherer/src/gatherer/Gatherer.ts b/DataGatherer/src/gatherer/Gatherer.ts
index 27bf682..b3c4cc5 100644
--- a/DataGatherer/src/gatherer/Gatherer.ts
+++ b/DataGatherer/src/gatherer/Gatherer.ts
@@ -9,7 +9,7 @@ export class Gatherer {
}
public start() {
- for(const source of this.sources){
+ for (const source of this.sources) {
source.startCollect();
}
}
@@ -21,4 +21,4 @@ export class Gatherer {
}
return allData;
}
-}
\ No newline at end of file
+}
diff --git a/DataGatherer/src/index.html b/DataGatherer/src/index.html
index 8e6e9aa..9e51191 100644
--- a/DataGatherer/src/index.html
+++ b/DataGatherer/src/index.html
@@ -2,7 +2,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+