From b28028ac4082842143b0f528d6bc539da6ccb419 Mon Sep 17 00:00:00 2001
From: Pliable Pixels
Date: Thu, 21 Sep 2017 12:49:18 -0400
Subject: mega changes, including updates and X
---
.../exampleApplications/disassemblerExample.html | 67 +++
.../network/exampleApplications/lesMiserables.html | 396 ++++++++++++++++
.../network/exampleApplications/loadingBar.html | 504 +++++++++++++++++++++
.../neighbourhoodHighlight.html | 162 +++++++
.../network/exampleApplications/nodeLegend.html | 163 +++++++
.../exampleApplications/worldCupPerformance.html | 98 ++++
6 files changed, 1390 insertions(+)
create mode 100644 www/lib/vis/examples/network/exampleApplications/disassemblerExample.html
create mode 100644 www/lib/vis/examples/network/exampleApplications/lesMiserables.html
create mode 100644 www/lib/vis/examples/network/exampleApplications/loadingBar.html
create mode 100644 www/lib/vis/examples/network/exampleApplications/neighbourhoodHighlight.html
create mode 100644 www/lib/vis/examples/network/exampleApplications/nodeLegend.html
create mode 100644 www/lib/vis/examples/network/exampleApplications/worldCupPerformance.html
(limited to 'www/lib/vis/examples/network/exampleApplications')
diff --git a/www/lib/vis/examples/network/exampleApplications/disassemblerExample.html b/www/lib/vis/examples/network/exampleApplications/disassemblerExample.html
new file mode 100644
index 00000000..8ecd8e39
--- /dev/null
+++ b/www/lib/vis/examples/network/exampleApplications/disassemblerExample.html
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+Use VisJS to diagram the Control-Flow-Graph (CFG) of a function from
+a program you wish to analyze.
+
+
+
+
diff --git a/www/lib/vis/examples/network/exampleApplications/lesMiserables.html b/www/lib/vis/examples/network/exampleApplications/lesMiserables.html
new file mode 100644
index 00000000..b97c32b0
--- /dev/null
+++ b/www/lib/vis/examples/network/exampleApplications/lesMiserables.html
@@ -0,0 +1,396 @@
+
+
+
+ Network | Les miserables
+
+
+
+
+
+
+
+
+
+
+
+
+ Relations between the characters of "Les miserables".
+
+
+
+
+
diff --git a/www/lib/vis/examples/network/exampleApplications/loadingBar.html b/www/lib/vis/examples/network/exampleApplications/loadingBar.html
new file mode 100644
index 00000000..519289e4
--- /dev/null
+++ b/www/lib/vis/examples/network/exampleApplications/loadingBar.html
@@ -0,0 +1,504 @@
+
+
+
+ Network | Les miserables
+
+
+
+
+
+
+
+
+
+
+
+
+ With the new stabilization events you can implement your own custom loading bar for all those long loading times!
+
+
+
+
+
diff --git a/www/lib/vis/examples/network/exampleApplications/neighbourhoodHighlight.html b/www/lib/vis/examples/network/exampleApplications/neighbourhoodHighlight.html
new file mode 100644
index 00000000..8e05d482
--- /dev/null
+++ b/www/lib/vis/examples/network/exampleApplications/neighbourhoodHighlight.html
@@ -0,0 +1,162 @@
+
+
+
+ Network | Static smooth curves - World Cup Network
+
+
+
+
+
+
+
+
+
+
+
+
+Dynamic Data - Neighbourhood Highlight
+
+ This example shows the power of the DataSet. Once a node is clicked, all nodes are greyed out except for the first and second order connected nodes.
+ In this example we show how you can determine the order of connection per node as well as applying individual styling to the nodes based on whether or not
+ they are connected to the selected node. The code doing the highlighting only takes about 1ms, the rest of the time is the redrawing of the network (9200 edges..).
+
+
+
+
+
+
+
+
diff --git a/www/lib/vis/examples/network/exampleApplications/nodeLegend.html b/www/lib/vis/examples/network/exampleApplications/nodeLegend.html
new file mode 100644
index 00000000..69769d9b
--- /dev/null
+++ b/www/lib/vis/examples/network/exampleApplications/nodeLegend.html
@@ -0,0 +1,163 @@
+
+
+
+ Network | Images
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/www/lib/vis/examples/network/exampleApplications/worldCupPerformance.html b/www/lib/vis/examples/network/exampleApplications/worldCupPerformance.html
new file mode 100644
index 00000000..7de0667b
--- /dev/null
+++ b/www/lib/vis/examples/network/exampleApplications/worldCupPerformance.html
@@ -0,0 +1,98 @@
+
+
+
+
+
+ Network | Static smooth curves - World Cup Network
+
+
+
+
+
+
+
+
+
+
+
+
+Performance - World Cup Network
+
+
+ This example shows the performance of vis with a larger network. The edges in
+ particular (~9200) are very computationally intensive
+ to draw. Drag and hold the graph to see the performance difference if the
+ edges are hidden.
+
+ We use the following physics configuration:
+ {barnesHut: {gravitationalConstant: -80000, springConstant: 0.001,
+ springLength: 200}}
+
+
+
+
+
+
+
+
--
cgit v1.2.3