├── .gitignore ├── GPGPUtility.js ├── LICENSE ├── README.md ├── arrayUtilities.js ├── compatibility.glsl ├── d3-ForceEdgeBundling.js ├── d3.js ├── division_test.m ├── example ├── TrackballControls.js ├── airline_routes.html ├── bundling_data │ ├── airlines.xml │ ├── locations.csv │ ├── migrations.xml │ └── nw.csv ├── connectome.html └── papaparse.js ├── gpu-forcebundling.js ├── index.html ├── jquery-3.1.1.js ├── jquery-3.1.1.min.js ├── jquery-3.1.1.min.map ├── readme_img ├── airline_graph.png ├── airline_node_link_graph.png ├── comp.png └── thumbnail.png ├── subdivision.glsl ├── three.js ├── three.min.js ├── update.glsl ├── update_edge_divisions.m └── update_edge_divisions_parallel.m /.gitignore: -------------------------------------------------------------------------------- 1 | /*.asv 2 | /.idea/* -------------------------------------------------------------------------------- /GPGPUtility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/GPGPUtility.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/README.md -------------------------------------------------------------------------------- /arrayUtilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/arrayUtilities.js -------------------------------------------------------------------------------- /compatibility.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/compatibility.glsl -------------------------------------------------------------------------------- /d3-ForceEdgeBundling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/d3-ForceEdgeBundling.js -------------------------------------------------------------------------------- /d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/d3.js -------------------------------------------------------------------------------- /division_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/division_test.m -------------------------------------------------------------------------------- /example/TrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/example/TrackballControls.js -------------------------------------------------------------------------------- /example/airline_routes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/example/airline_routes.html -------------------------------------------------------------------------------- /example/bundling_data/airlines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/example/bundling_data/airlines.xml -------------------------------------------------------------------------------- /example/bundling_data/locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/example/bundling_data/locations.csv -------------------------------------------------------------------------------- /example/bundling_data/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/example/bundling_data/migrations.xml -------------------------------------------------------------------------------- /example/bundling_data/nw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/example/bundling_data/nw.csv -------------------------------------------------------------------------------- /example/connectome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/example/connectome.html -------------------------------------------------------------------------------- /example/papaparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/example/papaparse.js -------------------------------------------------------------------------------- /gpu-forcebundling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/gpu-forcebundling.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/index.html -------------------------------------------------------------------------------- /jquery-3.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/jquery-3.1.1.js -------------------------------------------------------------------------------- /jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /jquery-3.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/jquery-3.1.1.min.map -------------------------------------------------------------------------------- /readme_img/airline_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/readme_img/airline_graph.png -------------------------------------------------------------------------------- /readme_img/airline_node_link_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/readme_img/airline_node_link_graph.png -------------------------------------------------------------------------------- /readme_img/comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/readme_img/comp.png -------------------------------------------------------------------------------- /readme_img/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/readme_img/thumbnail.png -------------------------------------------------------------------------------- /subdivision.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/subdivision.glsl -------------------------------------------------------------------------------- /three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/three.js -------------------------------------------------------------------------------- /three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/three.min.js -------------------------------------------------------------------------------- /update.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/update.glsl -------------------------------------------------------------------------------- /update_edge_divisions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/update_edge_divisions.m -------------------------------------------------------------------------------- /update_edge_divisions_parallel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeCodingLab/GPUEdgeBundling/HEAD/update_edge_divisions_parallel.m --------------------------------------------------------------------------------