├── README.md ├── demos ├── IBC-SoundPillards │ ├── P10-Details │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── classes │ │ │ │ ├── CamParallax.js │ │ │ │ ├── ExampleClass.js │ │ │ │ ├── FloorClass.js │ │ │ │ ├── LoadingController.js │ │ │ │ ├── MainThreeScene.js │ │ │ │ ├── ParticleSystem.js │ │ │ │ ├── SoundReactor.js │ │ │ │ ├── SpectrumClass.js │ │ │ │ └── SpherePillardsClass.js │ │ │ ├── components │ │ │ │ ├── LoadingScreen.vue │ │ │ │ ├── ThreeScene.vue │ │ │ │ └── TitleScreen.vue │ │ │ ├── main.js │ │ │ ├── shaders │ │ │ │ ├── spectrum.frag │ │ │ │ └── spectrum.vert │ │ │ └── utils │ │ │ │ ├── MyGUI.js │ │ │ │ ├── RAF.js │ │ │ │ └── config.js │ │ └── vue.config.js │ ├── P2-3DModelingAndLayout │ │ ├── floorModel.blend │ │ └── soundPillardsModels.blend │ ├── P3-FromBlenderToBrowser │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── classes │ │ │ │ ├── ExampleClass.js │ │ │ │ ├── FloorClass.js │ │ │ │ ├── MainThreeScene.js │ │ │ │ └── SpherePillardsClass.js │ │ │ ├── components │ │ │ │ └── ThreeScene.vue │ │ │ ├── main.js │ │ │ ├── shaders │ │ │ │ ├── simple.frag │ │ │ │ └── simple.vert │ │ │ └── utils │ │ │ │ ├── MyGUI.js │ │ │ │ ├── RAF.js │ │ │ │ └── config.js │ │ └── vue.config.js │ ├── P4-ModelManipulation │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── classes │ │ │ │ ├── ExampleClass.js │ │ │ │ ├── FloorClass.js │ │ │ │ ├── MainThreeScene.js │ │ │ │ └── SpherePillardsClass.js │ │ │ ├── components │ │ │ │ └── ThreeScene.vue │ │ │ ├── main.js │ │ │ ├── shaders │ │ │ │ ├── simple.frag │ │ │ │ └── simple.vert │ │ │ └── utils │ │ │ │ ├── MyGUI.js │ │ │ │ ├── RAF.js │ │ │ │ └── config.js │ │ └── vue.config.js │ ├── P5-Shaders │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── classes │ │ │ │ ├── ExampleClass.js │ │ │ │ ├── FloorClass.js │ │ │ │ ├── MainThreeScene.js │ │ │ │ ├── SpectrumClass.js │ │ │ │ └── SpherePillardsClass.js │ │ │ ├── components │ │ │ │ └── ThreeScene.vue │ │ │ ├── main.js │ │ │ ├── shaders │ │ │ │ ├── spectrum.frag │ │ │ │ └── spectrum.vert │ │ │ └── utils │ │ │ │ ├── MyGUI.js │ │ │ │ ├── RAF.js │ │ │ │ └── config.js │ │ └── vue.config.js │ ├── P6-AudioReactors │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── classes │ │ │ │ ├── ExampleClass.js │ │ │ │ ├── FloorClass.js │ │ │ │ ├── MainThreeScene.js │ │ │ │ ├── SoundReactor.js │ │ │ │ ├── SpectrumClass.js │ │ │ │ └── SpherePillardsClass.js │ │ │ ├── components │ │ │ │ ├── AudioButton.vue │ │ │ │ └── ThreeScene.vue │ │ │ ├── main.js │ │ │ ├── shaders │ │ │ │ ├── spectrum.frag │ │ │ │ └── spectrum.vert │ │ │ └── utils │ │ │ │ ├── MyGUI.js │ │ │ │ ├── RAF.js │ │ │ │ └── config.js │ │ └── vue.config.js │ ├── P7-Particles │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── classes │ │ │ │ ├── ExampleClass.js │ │ │ │ ├── FloorClass.js │ │ │ │ ├── MainThreeScene.js │ │ │ │ ├── ParticleSystem.js │ │ │ │ ├── SoundReactor.js │ │ │ │ ├── SpectrumClass.js │ │ │ │ └── SpherePillardsClass.js │ │ │ ├── components │ │ │ │ ├── AudioButton.vue │ │ │ │ └── ThreeScene.vue │ │ │ ├── main.js │ │ │ ├── shaders │ │ │ │ ├── spectrum.frag │ │ │ │ └── spectrum.vert │ │ │ └── utils │ │ │ │ ├── MyGUI.js │ │ │ │ ├── RAF.js │ │ │ │ └── config.js │ │ └── vue.config.js │ ├── P8-GUIAndCustomization │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── classes │ │ │ │ ├── CamParallax.js │ │ │ │ ├── ExampleClass.js │ │ │ │ ├── FloorClass.js │ │ │ │ ├── MainThreeScene.js │ │ │ │ ├── ParticleSystem.js │ │ │ │ ├── SoundReactor.js │ │ │ │ ├── SpectrumClass.js │ │ │ │ └── SpherePillardsClass.js │ │ │ ├── components │ │ │ │ ├── AudioButton.vue │ │ │ │ └── ThreeScene.vue │ │ │ ├── main.js │ │ │ ├── shaders │ │ │ │ ├── spectrum.frag │ │ │ │ └── spectrum.vert │ │ │ └── utils │ │ │ │ ├── MyGUI.js │ │ │ │ ├── RAF.js │ │ │ │ └── config.js │ │ └── vue.config.js │ └── P9-LetsAddUI │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── classes │ │ │ ├── CamParallax.js │ │ │ ├── ExampleClass.js │ │ │ ├── FloorClass.js │ │ │ ├── LoadingController.js │ │ │ ├── MainThreeScene.js │ │ │ ├── ParticleSystem.js │ │ │ ├── SoundReactor.js │ │ │ ├── SpectrumClass.js │ │ │ └── SpherePillardsClass.js │ │ ├── components │ │ │ ├── LoadingScreen.vue │ │ │ ├── ThreeScene.vue │ │ │ └── TitleScreen.vue │ │ ├── main.js │ │ ├── shaders │ │ │ ├── spectrum.frag │ │ │ └── spectrum.vert │ │ └── utils │ │ │ ├── MyGUI.js │ │ │ ├── RAF.js │ │ │ └── config.js │ │ └── vue.config.js ├── SimpleThreeJSBoilerPlate │ ├── README.md │ ├── index.html │ └── main.js ├── SimpleThreeJShader │ ├── README.md │ ├── index.html │ ├── main.js │ └── shaders │ │ ├── fragmentShader.js │ │ └── vertexShader.js └── ThreeJSModelImportExample │ ├── README.md │ ├── assets │ ├── squareRing.blend │ ├── squareRing.blend1 │ └── squareRing.glb │ ├── index.html │ └── main.js └── misc ├── ibcSound2.png └── yourConnection.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/.gitignore -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/babel.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/package.json -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/App.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/CamParallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/CamParallax.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/ExampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/ExampleClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/FloorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/FloorClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/LoadingController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/LoadingController.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/MainThreeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/MainThreeScene.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/ParticleSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/ParticleSystem.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/SoundReactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/SoundReactor.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/SpectrumClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/SpectrumClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/classes/SpherePillardsClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/classes/SpherePillardsClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/components/LoadingScreen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/components/LoadingScreen.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/components/ThreeScene.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/components/ThreeScene.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/components/TitleScreen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/components/TitleScreen.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/main.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/shaders/spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/shaders/spectrum.frag -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/shaders/spectrum.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/shaders/spectrum.vert -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/utils/MyGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/utils/MyGUI.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/utils/RAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/utils/RAF.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/src/utils/config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P10-Details/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P10-Details/vue.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P2-3DModelingAndLayout/floorModel.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P2-3DModelingAndLayout/floorModel.blend -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P2-3DModelingAndLayout/soundPillardsModels.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P2-3DModelingAndLayout/soundPillardsModels.blend -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/.gitignore -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/babel.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/package.json -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/App.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/classes/ExampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/classes/ExampleClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/classes/FloorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/classes/FloorClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/classes/MainThreeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/classes/MainThreeScene.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/classes/SpherePillardsClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/classes/SpherePillardsClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/components/ThreeScene.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/components/ThreeScene.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/main.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/shaders/simple.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/shaders/simple.frag -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/shaders/simple.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/shaders/simple.vert -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/utils/MyGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/utils/MyGUI.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/utils/RAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/utils/RAF.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/src/utils/config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P3-FromBlenderToBrowser/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P3-FromBlenderToBrowser/vue.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/.gitignore -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/babel.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/package.json -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/App.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/classes/ExampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/classes/ExampleClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/classes/FloorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/classes/FloorClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/classes/MainThreeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/classes/MainThreeScene.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/classes/SpherePillardsClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/classes/SpherePillardsClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/components/ThreeScene.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/components/ThreeScene.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/main.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/shaders/simple.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/shaders/simple.frag -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/shaders/simple.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/shaders/simple.vert -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/utils/MyGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/utils/MyGUI.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/utils/RAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/utils/RAF.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/src/utils/config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P4-ModelManipulation/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P4-ModelManipulation/vue.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/.gitignore -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/babel.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/package.json -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/App.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/classes/ExampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/classes/ExampleClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/classes/FloorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/classes/FloorClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/classes/MainThreeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/classes/MainThreeScene.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/classes/SpectrumClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/classes/SpectrumClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/classes/SpherePillardsClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/classes/SpherePillardsClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/components/ThreeScene.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/components/ThreeScene.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/main.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/shaders/spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/shaders/spectrum.frag -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/shaders/spectrum.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/shaders/spectrum.vert -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/utils/MyGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/utils/MyGUI.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/utils/RAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/utils/RAF.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/src/utils/config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P5-Shaders/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P5-Shaders/vue.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/.gitignore -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/babel.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/package.json -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/App.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/classes/ExampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/classes/ExampleClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/classes/FloorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/classes/FloorClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/classes/MainThreeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/classes/MainThreeScene.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/classes/SoundReactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/classes/SoundReactor.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/classes/SpectrumClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/classes/SpectrumClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/classes/SpherePillardsClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/classes/SpherePillardsClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/components/AudioButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/components/AudioButton.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/components/ThreeScene.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/components/ThreeScene.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/main.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/shaders/spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/shaders/spectrum.frag -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/shaders/spectrum.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/shaders/spectrum.vert -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/utils/MyGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/utils/MyGUI.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/utils/RAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/utils/RAF.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/src/utils/config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P6-AudioReactors/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P6-AudioReactors/vue.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/.gitignore -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/babel.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/package.json -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/App.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/classes/ExampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/classes/ExampleClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/classes/FloorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/classes/FloorClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/classes/MainThreeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/classes/MainThreeScene.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/classes/ParticleSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/classes/ParticleSystem.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/classes/SoundReactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/classes/SoundReactor.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/classes/SpectrumClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/classes/SpectrumClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/classes/SpherePillardsClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/classes/SpherePillardsClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/components/AudioButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/components/AudioButton.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/components/ThreeScene.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/components/ThreeScene.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/main.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/shaders/spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/shaders/spectrum.frag -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/shaders/spectrum.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/shaders/spectrum.vert -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/utils/MyGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/utils/MyGUI.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/utils/RAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/utils/RAF.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/src/utils/config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P7-Particles/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P7-Particles/vue.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/.gitignore -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/babel.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/package.json -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/App.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/CamParallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/CamParallax.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/ExampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/ExampleClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/FloorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/FloorClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/MainThreeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/MainThreeScene.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/ParticleSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/ParticleSystem.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/SoundReactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/SoundReactor.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/SpectrumClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/SpectrumClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/SpherePillardsClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/classes/SpherePillardsClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/components/AudioButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/components/AudioButton.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/components/ThreeScene.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/components/ThreeScene.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/main.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/shaders/spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/shaders/spectrum.frag -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/shaders/spectrum.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/shaders/spectrum.vert -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/utils/MyGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/utils/MyGUI.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/utils/RAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/utils/RAF.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/src/utils/config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P8-GUIAndCustomization/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P8-GUIAndCustomization/vue.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/.gitignore -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/README.md -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/babel.config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/package.json -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/App.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/CamParallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/CamParallax.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/ExampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/ExampleClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/FloorClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/FloorClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/LoadingController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/LoadingController.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/MainThreeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/MainThreeScene.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/ParticleSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/ParticleSystem.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/SoundReactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/SoundReactor.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/SpectrumClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/SpectrumClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/SpherePillardsClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/classes/SpherePillardsClass.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/components/LoadingScreen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/components/LoadingScreen.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/components/ThreeScene.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/components/ThreeScene.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/components/TitleScreen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/components/TitleScreen.vue -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/main.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/shaders/spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/shaders/spectrum.frag -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/shaders/spectrum.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/shaders/spectrum.vert -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/utils/MyGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/utils/MyGUI.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/utils/RAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/utils/RAF.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/src/utils/config.js -------------------------------------------------------------------------------- /demos/IBC-SoundPillards/P9-LetsAddUI/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/IBC-SoundPillards/P9-LetsAddUI/vue.config.js -------------------------------------------------------------------------------- /demos/SimpleThreeJSBoilerPlate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/SimpleThreeJSBoilerPlate/README.md -------------------------------------------------------------------------------- /demos/SimpleThreeJSBoilerPlate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/SimpleThreeJSBoilerPlate/index.html -------------------------------------------------------------------------------- /demos/SimpleThreeJSBoilerPlate/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/SimpleThreeJSBoilerPlate/main.js -------------------------------------------------------------------------------- /demos/SimpleThreeJShader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/SimpleThreeJShader/README.md -------------------------------------------------------------------------------- /demos/SimpleThreeJShader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/SimpleThreeJShader/index.html -------------------------------------------------------------------------------- /demos/SimpleThreeJShader/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/SimpleThreeJShader/main.js -------------------------------------------------------------------------------- /demos/SimpleThreeJShader/shaders/fragmentShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/SimpleThreeJShader/shaders/fragmentShader.js -------------------------------------------------------------------------------- /demos/SimpleThreeJShader/shaders/vertexShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/SimpleThreeJShader/shaders/vertexShader.js -------------------------------------------------------------------------------- /demos/ThreeJSModelImportExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/ThreeJSModelImportExample/README.md -------------------------------------------------------------------------------- /demos/ThreeJSModelImportExample/assets/squareRing.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/ThreeJSModelImportExample/assets/squareRing.blend -------------------------------------------------------------------------------- /demos/ThreeJSModelImportExample/assets/squareRing.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/ThreeJSModelImportExample/assets/squareRing.blend1 -------------------------------------------------------------------------------- /demos/ThreeJSModelImportExample/assets/squareRing.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/ThreeJSModelImportExample/assets/squareRing.glb -------------------------------------------------------------------------------- /demos/ThreeJSModelImportExample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/ThreeJSModelImportExample/index.html -------------------------------------------------------------------------------- /demos/ThreeJSModelImportExample/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/demos/ThreeJSModelImportExample/main.js -------------------------------------------------------------------------------- /misc/ibcSound2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/misc/ibcSound2.png -------------------------------------------------------------------------------- /misc/yourConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariusBallot/07-2021-Awwwards-Course-Documentation/HEAD/misc/yourConnection.png --------------------------------------------------------------------------------