├── .DS_Store ├── .firebase └── hosting.cHVibGlj.cache ├── .firebaserc ├── .github └── workflows │ └── firebase-hosting-pull-request.yml ├── .gitignore ├── .vscode └── snipsnap.code-snippets ├── README.md ├── firebase.json ├── gatsby-browser.js ├── gatsby-config.js ├── package.json ├── report.20210606.014705.64075.0.001.json └── src ├── .DS_Store ├── components ├── Loading.js ├── Nav.js ├── Sphere.js ├── ThreeJS.js ├── controls.js ├── controls.module.css ├── dial.tsx ├── layout.js ├── layout.module.css ├── loading.module.css ├── osc.js ├── osc.module.css └── shaders.js ├── images ├── .DS_Store ├── evos.png ├── evos1.png ├── logoBase.png ├── logoHover.png └── prev │ ├── .DS_Store │ ├── alter.jpg │ ├── evos.png │ ├── horizon.jpg │ ├── ml.png │ ├── noloop.jpg │ ├── skybox.jpg │ └── twist.jpg ├── pages ├── 404.js ├── index.js └── index.module.css ├── styles └── global.css └── utils ├── StartAudioContext.js └── store.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/.DS_Store -------------------------------------------------------------------------------- /.firebase/hosting.cHVibGlj.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/.firebase/hosting.cHVibGlj.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/.github/workflows/firebase-hosting-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | public 4 | -------------------------------------------------------------------------------- /.vscode/snipsnap.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/.vscode/snipsnap.code-snippets -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/firebase.json -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | import "./src/styles/global.css" -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/package.json -------------------------------------------------------------------------------- /report.20210606.014705.64075.0.001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/report.20210606.014705.64075.0.001.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/Loading.js -------------------------------------------------------------------------------- /src/components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/Nav.js -------------------------------------------------------------------------------- /src/components/Sphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/Sphere.js -------------------------------------------------------------------------------- /src/components/ThreeJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/ThreeJS.js -------------------------------------------------------------------------------- /src/components/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/controls.js -------------------------------------------------------------------------------- /src/components/controls.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/controls.module.css -------------------------------------------------------------------------------- /src/components/dial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/dial.tsx -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/layout.module.css -------------------------------------------------------------------------------- /src/components/loading.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/osc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/osc.js -------------------------------------------------------------------------------- /src/components/osc.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/osc.module.css -------------------------------------------------------------------------------- /src/components/shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/components/shaders.js -------------------------------------------------------------------------------- /src/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/.DS_Store -------------------------------------------------------------------------------- /src/images/evos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/evos.png -------------------------------------------------------------------------------- /src/images/evos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/evos1.png -------------------------------------------------------------------------------- /src/images/logoBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/logoBase.png -------------------------------------------------------------------------------- /src/images/logoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/logoHover.png -------------------------------------------------------------------------------- /src/images/prev/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/prev/.DS_Store -------------------------------------------------------------------------------- /src/images/prev/alter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/prev/alter.jpg -------------------------------------------------------------------------------- /src/images/prev/evos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/prev/evos.png -------------------------------------------------------------------------------- /src/images/prev/horizon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/prev/horizon.jpg -------------------------------------------------------------------------------- /src/images/prev/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/prev/ml.png -------------------------------------------------------------------------------- /src/images/prev/noloop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/prev/noloop.jpg -------------------------------------------------------------------------------- /src/images/prev/skybox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/prev/skybox.jpg -------------------------------------------------------------------------------- /src/images/prev/twist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/images/prev/twist.jpg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- 1 | #test { 2 | margin: 100px; 3 | } -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/utils/StartAudioContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/utils/StartAudioContext.js -------------------------------------------------------------------------------- /src/utils/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilesfromm/4d_synth/HEAD/src/utils/store.js --------------------------------------------------------------------------------