├── .babelrc ├── .eslintignore ├── .eslintrc.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE-gpl-3.md ├── LICENSE.md ├── README.md ├── arrow-fs8.png ├── arrow.png ├── arrows ├── README.md ├── wind_0.png ├── wind_1.png ├── wind_10.png ├── wind_11.png ├── wind_12.png ├── wind_13.png ├── wind_14.png ├── wind_15.png ├── wind_16.png ├── wind_17.png ├── wind_18.png ├── wind_19.png ├── wind_2.png ├── wind_20.png ├── wind_21.png ├── wind_22.png ├── wind_23.png ├── wind_24.png ├── wind_25.png ├── wind_3.png ├── wind_4.png ├── wind_5.png ├── wind_6.png ├── wind_7.png ├── wind_8.png └── wind_9.png ├── babel.config.js ├── blog.md ├── grid.json ├── interpolate.py ├── jest.config.js ├── package.json ├── src ├── ArrowLayer.js ├── CanvasWindParticlesLayer.js ├── CustomCanvasLayer.js ├── CustomWebGLLayer.js ├── UVBuffer.js ├── UVBuffer.test.js ├── WebGLWindGradientLayer.js ├── index.ejs ├── index.js ├── prepare_dataset.js ├── styling.js ├── util.js ├── webgl-debug.js ├── webgl.js └── webgl.test.js ├── u.json ├── v.json ├── video.gif ├── webpack.config.js └── white-arrow.png /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /src/webgl-debug.js 2 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-gpl-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/LICENSE-gpl-3.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/README.md -------------------------------------------------------------------------------- /arrow-fs8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrow-fs8.png -------------------------------------------------------------------------------- /arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrow.png -------------------------------------------------------------------------------- /arrows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/README.md -------------------------------------------------------------------------------- /arrows/wind_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_0.png -------------------------------------------------------------------------------- /arrows/wind_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_1.png -------------------------------------------------------------------------------- /arrows/wind_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_10.png -------------------------------------------------------------------------------- /arrows/wind_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_11.png -------------------------------------------------------------------------------- /arrows/wind_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_12.png -------------------------------------------------------------------------------- /arrows/wind_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_13.png -------------------------------------------------------------------------------- /arrows/wind_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_14.png -------------------------------------------------------------------------------- /arrows/wind_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_15.png -------------------------------------------------------------------------------- /arrows/wind_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_16.png -------------------------------------------------------------------------------- /arrows/wind_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_17.png -------------------------------------------------------------------------------- /arrows/wind_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_18.png -------------------------------------------------------------------------------- /arrows/wind_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_19.png -------------------------------------------------------------------------------- /arrows/wind_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_2.png -------------------------------------------------------------------------------- /arrows/wind_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_20.png -------------------------------------------------------------------------------- /arrows/wind_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_21.png -------------------------------------------------------------------------------- /arrows/wind_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_22.png -------------------------------------------------------------------------------- /arrows/wind_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_23.png -------------------------------------------------------------------------------- /arrows/wind_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_24.png -------------------------------------------------------------------------------- /arrows/wind_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_25.png -------------------------------------------------------------------------------- /arrows/wind_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_3.png -------------------------------------------------------------------------------- /arrows/wind_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_4.png -------------------------------------------------------------------------------- /arrows/wind_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_5.png -------------------------------------------------------------------------------- /arrows/wind_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_6.png -------------------------------------------------------------------------------- /arrows/wind_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_7.png -------------------------------------------------------------------------------- /arrows/wind_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_8.png -------------------------------------------------------------------------------- /arrows/wind_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/arrows/wind_9.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/blog.md -------------------------------------------------------------------------------- /grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/grid.json -------------------------------------------------------------------------------- /interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/interpolate.py -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/package.json -------------------------------------------------------------------------------- /src/ArrowLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/ArrowLayer.js -------------------------------------------------------------------------------- /src/CanvasWindParticlesLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/CanvasWindParticlesLayer.js -------------------------------------------------------------------------------- /src/CustomCanvasLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/CustomCanvasLayer.js -------------------------------------------------------------------------------- /src/CustomWebGLLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/CustomWebGLLayer.js -------------------------------------------------------------------------------- /src/UVBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/UVBuffer.js -------------------------------------------------------------------------------- /src/UVBuffer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/UVBuffer.test.js -------------------------------------------------------------------------------- /src/WebGLWindGradientLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/WebGLWindGradientLayer.js -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/index.js -------------------------------------------------------------------------------- /src/prepare_dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/prepare_dataset.js -------------------------------------------------------------------------------- /src/styling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/styling.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/util.js -------------------------------------------------------------------------------- /src/webgl-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/webgl-debug.js -------------------------------------------------------------------------------- /src/webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/webgl.js -------------------------------------------------------------------------------- /src/webgl.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/src/webgl.test.js -------------------------------------------------------------------------------- /u.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/u.json -------------------------------------------------------------------------------- /v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/v.json -------------------------------------------------------------------------------- /video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/video.gif -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/webpack.config.js -------------------------------------------------------------------------------- /white-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gberaudo/olwind/HEAD/white-arrow.png --------------------------------------------------------------------------------