├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── animation.js ├── assets │ ├── img │ │ ├── github.svg │ │ └── info-circle.svg │ ├── index.html │ └── styles.css ├── benchmark.js ├── canvasProxy.js ├── initialize.js ├── renderers │ ├── workerCanvas.js │ ├── workerSVG.js │ ├── workerlessCanvas.js │ └── workerlessSVG.js ├── satellite.js ├── webworker.js └── workerClient.js ├── brunch-config.js ├── demo.png ├── package.json ├── scripts └── make-vectors.sh └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/README.md -------------------------------------------------------------------------------- /app/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/animation.js -------------------------------------------------------------------------------- /app/assets/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/assets/img/github.svg -------------------------------------------------------------------------------- /app/assets/img/info-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/assets/img/info-circle.svg -------------------------------------------------------------------------------- /app/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/assets/index.html -------------------------------------------------------------------------------- /app/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/assets/styles.css -------------------------------------------------------------------------------- /app/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/benchmark.js -------------------------------------------------------------------------------- /app/canvasProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/canvasProxy.js -------------------------------------------------------------------------------- /app/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/initialize.js -------------------------------------------------------------------------------- /app/renderers/workerCanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/renderers/workerCanvas.js -------------------------------------------------------------------------------- /app/renderers/workerSVG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/renderers/workerSVG.js -------------------------------------------------------------------------------- /app/renderers/workerlessCanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/renderers/workerlessCanvas.js -------------------------------------------------------------------------------- /app/renderers/workerlessSVG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/renderers/workerlessSVG.js -------------------------------------------------------------------------------- /app/satellite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/satellite.js -------------------------------------------------------------------------------- /app/webworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/webworker.js -------------------------------------------------------------------------------- /app/workerClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/app/workerClient.js -------------------------------------------------------------------------------- /brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/brunch-config.js -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/demo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/package.json -------------------------------------------------------------------------------- /scripts/make-vectors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/scripts/make-vectors.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualPerspective/web-worker-projection/HEAD/yarn.lock --------------------------------------------------------------------------------