├── .DS_Store ├── .gitattributes ├── Play_with_APIs ├── .DS_Store ├── bodySegmentation(incomplete) │ ├── .DS_Store │ ├── detection.js │ ├── index.html │ └── sketch.js ├── facemesh │ ├── .DS_Store │ ├── part1_implementFacemesh │ │ ├── detection.js │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── part2_singleShape │ │ ├── detection.js │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── part3_multipleShapes │ │ ├── detection.js │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── part4_IndividualParameters │ │ ├── detection.js │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── part5(finalVersion)_saveData │ │ ├── detection.js │ │ ├── drawings │ │ │ ├── Guard.json │ │ │ ├── clown.json │ │ │ ├── fox.json │ │ │ ├── ghost.json │ │ │ ├── grey.json │ │ │ ├── operaMask.json │ │ │ ├── operaMask2.json │ │ │ ├── operaMask3.json │ │ │ └── pumpkin.json │ │ ├── images │ │ │ ├── icons.ai │ │ │ ├── savejson.png │ │ │ ├── screenshot.png │ │ │ ├── shapeindex_down.png │ │ │ └── shapeindex_up.png │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ └── videofile_version │ │ ├── archive │ │ ├── .DS_Store │ │ ├── clown.json │ │ ├── clown2.json │ │ ├── clown3.json │ │ ├── fox.json │ │ ├── ghost.json │ │ ├── ghost_withEyes.json │ │ ├── grey.json │ │ ├── guard.json │ │ ├── operaMask.json │ │ ├── operaMask2.json │ │ ├── operaMask3.json │ │ ├── operaMask4.json │ │ └── pumpkin.json │ │ ├── drawing.json │ │ ├── index.html │ │ ├── participants │ │ ├── .DS_Store │ │ └── Kazuki │ │ │ ├── .DS_Store │ │ │ ├── 0000.JPG │ │ │ ├── 0001.JPG │ │ │ ├── 0002.JPG │ │ │ ├── 0003.JPG │ │ │ └── footages │ │ │ ├── .DS_Store │ │ │ ├── 0000.png │ │ │ ├── 0001.png │ │ │ ├── 0002.png │ │ │ └── 0003.png │ │ ├── samples │ │ ├── sample0.png │ │ ├── sample1.png │ │ ├── sample2.png │ │ ├── sample3.png │ │ ├── sample4.png │ │ └── sample5.png │ │ ├── sketch.js │ │ └── style.css ├── hand_detection │ ├── mediapipe_hands │ │ ├── blank │ │ │ ├── index.html │ │ │ └── sketch.js │ │ └── final │ │ │ ├── detection.js │ │ │ ├── index.html │ │ │ ├── sketch.js │ │ │ └── style.css │ ├── ml5_handpose │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ └── official_demo │ │ ├── detection.js │ │ └── index.html ├── mediapipe_iris(incomplete) │ ├── blank │ │ ├── index.html │ │ └── sketch.js │ └── final │ │ ├── detection.js │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css └── ml5_faceApi │ ├── .DS_Store │ ├── face-api_imageFile │ ├── .DS_Store │ ├── data │ │ ├── .DS_Store │ │ ├── .image1.png.icloud │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ └── image4.jpg │ ├── index.html │ ├── sketch.js │ └── style.css │ ├── face-api_videoFile(incomplete) │ ├── index.html │ ├── sketch.js │ └── style.css │ └── face-api_videoInput │ ├── .DS_Store │ ├── blank │ ├── index.html │ └── sketch.js │ └── final │ ├── index.html │ ├── sketch.js │ └── style.css ├── Play_with_geometry ├── .DS_Store ├── 3DMathDoubleFlowers │ ├── .DS_Store │ ├── part1.5 │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── part1 │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ └── part2 │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css ├── 3DMathFlowers │ ├── .DS_Store │ ├── part1_final │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── part2_final │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ └── polarRose_explain │ │ ├── .DS_Store │ │ ├── hanzipen-sc-regular.otf │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css ├── PolarCoordinates │ ├── .DS_Store │ ├── 00_pc_explain │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 01_balls │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 02_polygon │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 03_lissajousFigure │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 04_archimedeanSpiral │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 05_polarRose │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── SoundReactive │ │ ├── .DS_Store │ │ ├── .atom-live-server.json │ │ ├── images │ │ │ ├── .DS_Store │ │ │ ├── .background.png.icloud │ │ │ ├── backgroundMedium.png │ │ │ └── backgroundSmall.png │ │ ├── index.html │ │ ├── sawtoothWave │ │ │ └── sawtoothWave.pde │ │ ├── sketch.js │ │ ├── songs │ │ │ ├── .DS_Store │ │ │ ├── .The_Columbians_-_Just_Like_A_Rainbow.mp3.icloud │ │ │ └── .William Ross Chernoff's Nomads-Ahmad.mp3.icloud │ │ ├── style.css │ │ └── wave.js │ ├── keyVisual │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ └── thumbnail │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css ├── SphericalCoordinates │ ├── .DS_Store │ ├── .explanation.key.icloud │ ├── 0_1_basicSphere │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 0_2_SpiralSphere │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 0_3_SphericalLissajous │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ └── 0_4_bumpySphere │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css ├── SphericalPerlinNoise(incomplete) │ ├── .DS_Store │ ├── 0_1_rippingSphere │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 0_2_SphereNoiseTexture │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 0_3_noiseAgent(Incomplete) │ │ ├── .DS_Store │ │ ├── agent.js │ │ ├── index.html │ │ ├── ribbon3D.js │ │ ├── sketch.js │ │ └── style.css │ ├── polarNoiseAnimationLoop │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── noiseLoop.js │ │ ├── particle.js │ │ ├── sketch.js │ │ └── style.css │ └── polarPerlinNoiseLoop │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css ├── ToroidalCoordinates │ ├── .DS_Store │ ├── bumpyTorus │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── libraries │ │ │ ├── p5.dom.js │ │ │ ├── p5.js │ │ │ └── p5.sound.js │ │ ├── sketch.js │ │ └── style.css │ ├── explanation.key │ ├── kleinBottle │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── libraries │ │ │ ├── p5.dom.js │ │ │ ├── p5.js │ │ │ └── p5.sound.js │ │ ├── sketch.js │ │ └── style.css │ ├── toroidalLissajousCurves │ │ ├── index.html │ │ ├── libraries │ │ │ ├── p5.dom.js │ │ │ ├── p5.js │ │ │ └── p5.sound.js │ │ ├── sketch.js │ │ └── style.css │ ├── toroidalSpiral │ │ ├── index.html │ │ ├── libraries │ │ │ ├── p5.dom.js │ │ │ ├── p5.js │ │ │ └── p5.sound.js │ │ ├── sketch.js │ │ └── style.css │ └── torus │ │ ├── index.html │ │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ │ ├── sketch.js │ │ └── style.css └── gaussianFunction(incomplete) │ ├── .DS_Store │ ├── 1D_gaussianFunction copy │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ ├── sketch.js │ └── style.css │ ├── 2D_gaussianFunction │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ ├── sketch.js │ └── style.css │ └── gaussian+Torus │ ├── index.html │ ├── libraries │ ├── p5.dom.js │ ├── p5.js │ └── p5.sound.js │ ├── sketch.js │ └── style.css ├── Play_with_noise ├── .DS_Store ├── planet │ ├── .DS_Store │ ├── index.html │ ├── sketch.js │ ├── solar.png │ └── style.css └── waterSurface │ ├── index.html │ ├── sketch.js │ └── style.css ├── README.md ├── p5_hacks ├── .DS_Store ├── Glow_effect │ ├── .DS_Store │ ├── depth_of_field │ │ ├── .DS_Store │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ └── AlexBrush-Regular.ttf │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── glowing_shapes │ │ ├── .DS_Store │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ └── AlexBrush-Regular.ttf │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── neon_signs │ │ ├── .DS_Store │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ ├── AlexBrush-Regular.ttf │ │ │ ├── TextMeOne-Regular.ttf │ │ │ ├── blockWall.png │ │ │ ├── coffee.ai │ │ │ └── coffee.png │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ └── shadow │ │ ├── .DS_Store │ │ ├── assets │ │ ├── .DS_Store │ │ └── AlexBrush-Regular.ttf │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css ├── Gradient_effect │ ├── .DS_Store │ ├── conical_gradient │ │ ├── .DS_Store │ │ ├── .atom-live-server.json │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── hyper_gradient │ │ ├── .DS_Store │ │ ├── .atom-live-server.json │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── linear_gradient │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ └── radical_gradient │ │ ├── .DS_Store │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css ├── cut-out_effect │ ├── .DS_Store │ ├── blueSky │ │ ├── .DS_Store │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ ├── AoyagiKouzanTOTF.otf │ │ │ ├── KouzanMouhituFontOTF.otf │ │ │ └── sky.png │ │ ├── index.html │ │ ├── sketch.js │ │ ├── snow.js │ │ └── style.css │ ├── greenTea │ │ ├── .DS_Store │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ ├── AoyagiKouzanTOTF.otf │ │ │ ├── KouzanMouhituFontOTF.otf │ │ │ ├── greenTea.png │ │ │ ├── tea.ai │ │ │ ├── tea.png │ │ │ └── tea.svg │ │ ├── index.html │ │ ├── sketch.js │ │ ├── style.css │ │ └── vapor.js │ ├── redCherryBlossoms │ │ ├── .DS_Store │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ ├── KouzanMouhituFontOTF.otf │ │ │ └── blossom.png │ │ ├── index.html │ │ ├── petal.js │ │ ├── sketch.js │ │ └── style.css │ └── whiteSnow │ │ ├── .DS_Store │ │ ├── assets │ │ ├── .DS_Store │ │ ├── AoyagiKouzanTOTF.otf │ │ ├── KouzanMouhituFontOTF.otf │ │ └── snow.png │ │ ├── index.html │ │ ├── sketch.js │ │ ├── snow.js │ │ └── style.css └── fast_blur_effect │ ├── .DS_Store │ ├── blurredImages │ ├── .DS_Store │ ├── assets │ │ ├── .DS_Store │ │ ├── AlexBrush-Regular.ttf │ │ ├── coffee.ai │ │ ├── coffee.png │ │ ├── rainDrops1.png │ │ ├── rainDrops2.png │ │ ├── rainDrops3.png │ │ ├── rainDrops4.png │ │ └── sapa.png │ ├── index.html │ ├── sketch.js │ └── style.css │ ├── blurredRects │ ├── .DS_Store │ ├── index.html │ ├── sketch.js │ └── style.css │ ├── blurredTexts │ ├── .DS_Store │ ├── index.html │ ├── sketch.js │ └── style.css │ └── depth-of-field-effect │ ├── .DS_Store │ ├── index.html │ ├── marble.js │ ├── sketch.js │ └── style.css └── readMeImages ├── .DS_Store ├── ComingSoon ├── .DS_Store ├── ComingSoon0.png ├── ComingSoon1.png ├── ComingSoon10.png ├── ComingSoon2.png ├── ComingSoon3.png ├── ComingSoon4.png ├── ComingSoon5.png ├── ComingSoon6.png ├── ComingSoon7.png ├── ComingSoon8.png └── ComingSoon9.png ├── MathFlower.png ├── faceAPI.png ├── facemesh.png ├── fastBlurEffect.png ├── glowEffect.png ├── gradientEffect.png ├── handsDetection.png ├── planet.png ├── polarCoordinates.png ├── soundReactive.png ├── sphericalCoordinates.png ├── studyWithMe.png ├── toroidalCoordinates.png └── waterSurface.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/.gitattributes -------------------------------------------------------------------------------- /Play_with_APIs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/bodySegmentation(incomplete)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/bodySegmentation(incomplete)/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/bodySegmentation(incomplete)/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/bodySegmentation(incomplete)/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/bodySegmentation(incomplete)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/bodySegmentation(incomplete)/index.html -------------------------------------------------------------------------------- /Play_with_APIs/bodySegmentation(incomplete)/sketch.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part1_implementFacemesh/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part1_implementFacemesh/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part1_implementFacemesh/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part1_implementFacemesh/index.html -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part1_implementFacemesh/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part1_implementFacemesh/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part1_implementFacemesh/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part1_implementFacemesh/style.css -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part2_singleShape/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part2_singleShape/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part2_singleShape/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part2_singleShape/index.html -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part2_singleShape/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part2_singleShape/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part2_singleShape/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part2_singleShape/style.css -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part3_multipleShapes/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part3_multipleShapes/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part3_multipleShapes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part3_multipleShapes/index.html -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part3_multipleShapes/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part3_multipleShapes/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part3_multipleShapes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part3_multipleShapes/style.css -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part4_IndividualParameters/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part4_IndividualParameters/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part4_IndividualParameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part4_IndividualParameters/index.html -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part4_IndividualParameters/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part4_IndividualParameters/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part4_IndividualParameters/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part4_IndividualParameters/style.css -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/Guard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/Guard.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/clown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/clown.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/fox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/fox.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/ghost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/ghost.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/grey.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/operaMask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/operaMask.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/operaMask2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/operaMask2.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/operaMask3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/operaMask3.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/pumpkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/drawings/pumpkin.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/icons.ai -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/savejson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/savejson.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/screenshot.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/shapeindex_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/shapeindex_down.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/shapeindex_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/images/shapeindex_up.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/index.html -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/part5(finalVersion)_saveData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/part5(finalVersion)_saveData/style.css -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/clown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/clown.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/clown2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/clown2.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/clown3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/clown3.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/fox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/fox.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/ghost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/ghost.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/ghost_withEyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/ghost_withEyes.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/grey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/grey.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/guard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/guard.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/operaMask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/operaMask.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/operaMask2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/operaMask2.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/operaMask3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/operaMask3.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/operaMask4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/operaMask4.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/archive/pumpkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/archive/pumpkin.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/drawing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/drawing.json -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/index.html -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/0000.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/0000.JPG -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/0001.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/0001.JPG -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/0002.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/0002.JPG -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/0003.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/0003.JPG -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/0000.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/0001.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/0002.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/participants/Kazuki/footages/0003.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/samples/sample0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/samples/sample0.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/samples/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/samples/sample1.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/samples/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/samples/sample2.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/samples/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/samples/sample3.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/samples/sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/samples/sample4.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/samples/sample5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/samples/sample5.png -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/facemesh/videofile_version/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/facemesh/videofile_version/style.css -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/mediapipe_hands/blank/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/mediapipe_hands/blank/index.html -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/mediapipe_hands/blank/sketch.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/mediapipe_hands/final/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/mediapipe_hands/final/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/mediapipe_hands/final/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/mediapipe_hands/final/index.html -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/mediapipe_hands/final/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/mediapipe_hands/final/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/mediapipe_hands/final/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/mediapipe_hands/final/style.css -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/ml5_handpose/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/ml5_handpose/index.html -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/ml5_handpose/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/ml5_handpose/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/ml5_handpose/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/ml5_handpose/style.css -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/official_demo/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/official_demo/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/hand_detection/official_demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/hand_detection/official_demo/index.html -------------------------------------------------------------------------------- /Play_with_APIs/mediapipe_iris(incomplete)/blank/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/mediapipe_iris(incomplete)/blank/index.html -------------------------------------------------------------------------------- /Play_with_APIs/mediapipe_iris(incomplete)/blank/sketch.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Play_with_APIs/mediapipe_iris(incomplete)/final/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/mediapipe_iris(incomplete)/final/detection.js -------------------------------------------------------------------------------- /Play_with_APIs/mediapipe_iris(incomplete)/final/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/mediapipe_iris(incomplete)/final/index.html -------------------------------------------------------------------------------- /Play_with_APIs/mediapipe_iris(incomplete)/final/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/mediapipe_iris(incomplete)/final/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/mediapipe_iris(incomplete)/final/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/mediapipe_iris(incomplete)/final/style.css -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/data/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/data/.image1.png.icloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/data/.image1.png.icloud -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/data/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/data/image2.jpg -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/data/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/data/image3.jpg -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/data/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/data/image4.jpg -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/index.html -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_imageFile/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_imageFile/style.css -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoFile(incomplete)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoFile(incomplete)/index.html -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoFile(incomplete)/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoFile(incomplete)/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoFile(incomplete)/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoFile(incomplete)/style.css -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoInput/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoInput/.DS_Store -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoInput/blank/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoInput/blank/index.html -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoInput/blank/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoInput/blank/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoInput/final/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoInput/final/index.html -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoInput/final/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoInput/final/sketch.js -------------------------------------------------------------------------------- /Play_with_APIs/ml5_faceApi/face-api_videoInput/final/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_APIs/ml5_faceApi/face-api_videoInput/final/style.css -------------------------------------------------------------------------------- /Play_with_geometry/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part1.5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part1.5/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part1.5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part1.5/index.html -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part1.5/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part1.5/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part1.5/style.css: -------------------------------------------------------------------------------- 1 | /* body{ 2 | background-color:#fff; 3 | } */ 4 | -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part1/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part1/index.html -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part1/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part1/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part1/style.css: -------------------------------------------------------------------------------- 1 | /* body{ 2 | background-color:#fff; 3 | } */ 4 | -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part2/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part2/index.html -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part2/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part2/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/3DMathDoubleFlowers/part2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathDoubleFlowers/part2/style.css -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/part1_final/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/part1_final/index.html -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/part1_final/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/part1_final/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/part1_final/style.css: -------------------------------------------------------------------------------- 1 | /* body{ 2 | background-color:#fff; 3 | } */ 4 | -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/part2_final/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/part2_final/index.html -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/part2_final/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/part2_final/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/part2_final/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/part2_final/style.css -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/polarRose_explain/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/polarRose_explain/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/polarRose_explain/hanzipen-sc-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/polarRose_explain/hanzipen-sc-regular.otf -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/polarRose_explain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/polarRose_explain/index.html -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/polarRose_explain/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/polarRose_explain/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/3DMathFlowers/polarRose_explain/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/3DMathFlowers/polarRose_explain/style.css -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/00_pc_explain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/00_pc_explain/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/00_pc_explain/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/00_pc_explain/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/00_pc_explain/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #47585c; /*color name: 錆鼠 さびねず*/ 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/01_balls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/01_balls/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/01_balls/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/01_balls/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/01_balls/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #47585c; /*color name: 錆鼠 さびねず*/ 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/02_polygon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/02_polygon/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/02_polygon/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/02_polygon/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/02_polygon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/02_polygon/style.css -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/03_lissajousFigure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/03_lissajousFigure/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/03_lissajousFigure/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/03_lissajousFigure/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/03_lissajousFigure/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/03_lissajousFigure/style.css -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/04_archimedeanSpiral/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/04_archimedeanSpiral/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/04_archimedeanSpiral/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/04_archimedeanSpiral/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/04_archimedeanSpiral/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #47585c; /*color name: 錆鼠 さびねず*/ 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/05_polarRose/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/05_polarRose/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/05_polarRose/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/05_polarRose/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/05_polarRose/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #47585c; /*color name: 錆鼠 さびねず*/ 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/.atom-live-server.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser":"google chrome" 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/images/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/images/.background.png.icloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/images/.background.png.icloud -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/images/backgroundMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/images/backgroundMedium.png -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/images/backgroundSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/images/backgroundSmall.png -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/sawtoothWave/sawtoothWave.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/sawtoothWave/sawtoothWave.pde -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/songs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/songs/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/songs/.The_Columbians_-_Just_Like_A_Rainbow.mp3.icloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/songs/.The_Columbians_-_Just_Like_A_Rainbow.mp3.icloud -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/songs/.William Ross Chernoff's Nomads-Ahmad.mp3.icloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/songs/.William Ross Chernoff's Nomads-Ahmad.mp3.icloud -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/style.css -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/SoundReactive/wave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/SoundReactive/wave.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/keyVisual/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/keyVisual/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/keyVisual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/keyVisual/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/keyVisual/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/keyVisual/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/keyVisual/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #47585c; /*color name: 錆鼠 さびねず*/ 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/thumbnail/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/thumbnail/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/thumbnail/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/thumbnail/index.html -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/thumbnail/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/PolarCoordinates/thumbnail/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/PolarCoordinates/thumbnail/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #47585c; /*color name: 錆鼠 さびねず*/ 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/.explanation.key.icloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/.explanation.key.icloud -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_1_basicSphere/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_1_basicSphere/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_1_basicSphere/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_1_basicSphere/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_1_basicSphere/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_1_basicSphere/style.css -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_2_SpiralSphere/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_2_SpiralSphere/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_2_SpiralSphere/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_2_SpiralSphere/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_2_SpiralSphere/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_2_SpiralSphere/style.css -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_3_SphericalLissajous/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_3_SphericalLissajous/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_3_SphericalLissajous/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_3_SphericalLissajous/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_3_SphericalLissajous/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_3_SphericalLissajous/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_3_SphericalLissajous/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_3_SphericalLissajous/style.css -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_4_bumpySphere/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_4_bumpySphere/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_4_bumpySphere/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_4_bumpySphere/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalCoordinates/0_4_bumpySphere/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalCoordinates/0_4_bumpySphere/style.css -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_1_rippingSphere/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_1_rippingSphere/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_1_rippingSphere/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_1_rippingSphere/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_1_rippingSphere/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_1_rippingSphere/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_1_rippingSphere/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_1_rippingSphere/style.css -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_2_SphereNoiseTexture/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_2_SphereNoiseTexture/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_2_SphereNoiseTexture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_2_SphereNoiseTexture/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_2_SphereNoiseTexture/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_2_SphereNoiseTexture/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_2_SphereNoiseTexture/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_2_SphereNoiseTexture/style.css -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/agent.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/ribbon3D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/ribbon3D.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/0_3_noiseAgent(Incomplete)/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #131626; 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/noiseLoop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/noiseLoop.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/particle.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarNoiseAnimationLoop/style.css -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarPerlinNoiseLoop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarPerlinNoiseLoop/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarPerlinNoiseLoop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarPerlinNoiseLoop/index.html -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarPerlinNoiseLoop/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarPerlinNoiseLoop/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/SphericalPerlinNoise(incomplete)/polarPerlinNoiseLoop/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/SphericalPerlinNoise(incomplete)/polarPerlinNoiseLoop/style.css -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/bumpyTorus/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/bumpyTorus/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/bumpyTorus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/bumpyTorus/index.html -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/bumpyTorus/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/bumpyTorus/libraries/p5.dom.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/bumpyTorus/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/bumpyTorus/libraries/p5.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/bumpyTorus/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/bumpyTorus/libraries/p5.sound.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/bumpyTorus/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/bumpyTorus/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/bumpyTorus/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/bumpyTorus/style.css -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/explanation.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/explanation.key -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/kleinBottle/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/kleinBottle/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/kleinBottle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/kleinBottle/index.html -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/kleinBottle/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/kleinBottle/libraries/p5.dom.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/kleinBottle/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/kleinBottle/libraries/p5.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/kleinBottle/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/kleinBottle/libraries/p5.sound.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/kleinBottle/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/kleinBottle/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/kleinBottle/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/kleinBottle/style.css -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/index.html -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/libraries/p5.dom.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/libraries/p5.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/libraries/p5.sound.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalLissajousCurves/style.css -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalSpiral/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalSpiral/index.html -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalSpiral/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalSpiral/libraries/p5.dom.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalSpiral/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalSpiral/libraries/p5.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalSpiral/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalSpiral/libraries/p5.sound.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalSpiral/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalSpiral/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/toroidalSpiral/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/toroidalSpiral/style.css -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/torus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/torus/index.html -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/torus/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/torus/libraries/p5.dom.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/torus/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/torus/libraries/p5.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/torus/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/torus/libraries/p5.sound.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/torus/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/torus/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/ToroidalCoordinates/torus/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/ToroidalCoordinates/torus/style.css -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/.DS_Store -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/index.html -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/libraries/p5.dom.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/libraries/p5.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/libraries/p5.sound.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/1D_gaussianFunction copy/style.css -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/index.html -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/libraries/p5.dom.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/libraries/p5.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/libraries/p5.sound.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/2D_gaussianFunction/style.css -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/index.html -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/libraries/p5.dom.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/libraries/p5.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/libraries/p5.sound.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/sketch.js -------------------------------------------------------------------------------- /Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_geometry/gaussianFunction(incomplete)/gaussian+Torus/style.css -------------------------------------------------------------------------------- /Play_with_noise/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_noise/.DS_Store -------------------------------------------------------------------------------- /Play_with_noise/planet/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_noise/planet/.DS_Store -------------------------------------------------------------------------------- /Play_with_noise/planet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_noise/planet/index.html -------------------------------------------------------------------------------- /Play_with_noise/planet/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_noise/planet/sketch.js -------------------------------------------------------------------------------- /Play_with_noise/planet/solar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_noise/planet/solar.png -------------------------------------------------------------------------------- /Play_with_noise/planet/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #000; 3 | } 4 | -------------------------------------------------------------------------------- /Play_with_noise/waterSurface/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_noise/waterSurface/index.html -------------------------------------------------------------------------------- /Play_with_noise/waterSurface/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/Play_with_noise/waterSurface/sketch.js -------------------------------------------------------------------------------- /Play_with_noise/waterSurface/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | /* background-color: #000; */ 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/README.md -------------------------------------------------------------------------------- /p5_hacks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/depth_of_field/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/depth_of_field/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/depth_of_field/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/depth_of_field/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/depth_of_field/assets/AlexBrush-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/depth_of_field/assets/AlexBrush-Regular.ttf -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/depth_of_field/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/depth_of_field/index.html -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/depth_of_field/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/depth_of_field/sketch.js -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/depth_of_field/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/depth_of_field/style.css -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/glowing_shapes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/glowing_shapes/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/glowing_shapes/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/glowing_shapes/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/glowing_shapes/assets/AlexBrush-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/glowing_shapes/assets/AlexBrush-Regular.ttf -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/glowing_shapes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/glowing_shapes/index.html -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/glowing_shapes/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/glowing_shapes/sketch.js -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/glowing_shapes/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #fff; /*color name: 錆鼠 さびねず 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/assets/AlexBrush-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/assets/AlexBrush-Regular.ttf -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/assets/TextMeOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/assets/TextMeOne-Regular.ttf -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/assets/blockWall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/assets/blockWall.png -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/assets/coffee.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/assets/coffee.ai -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/assets/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/assets/coffee.png -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/index.html -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/neon_signs/sketch.js -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/neon_signs/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #000; 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/shadow/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/shadow/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/shadow/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/shadow/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/shadow/assets/AlexBrush-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/shadow/assets/AlexBrush-Regular.ttf -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/shadow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/shadow/index.html -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/shadow/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/shadow/sketch.js -------------------------------------------------------------------------------- /p5_hacks/Glow_effect/shadow/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Glow_effect/shadow/style.css -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/conical_gradient/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/conical_gradient/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/conical_gradient/.atom-live-server.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser":"Firefox" 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/conical_gradient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/conical_gradient/index.html -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/conical_gradient/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/conical_gradient/sketch.js -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/conical_gradient/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/conical_gradient/style.css -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/hyper_gradient/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/hyper_gradient/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/hyper_gradient/.atom-live-server.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser":"Firefox" 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/hyper_gradient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/hyper_gradient/index.html -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/hyper_gradient/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/hyper_gradient/sketch.js -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/hyper_gradient/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/hyper_gradient/style.css -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/linear_gradient/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/linear_gradient/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/linear_gradient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/linear_gradient/index.html -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/linear_gradient/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/linear_gradient/sketch.js -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/linear_gradient/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/linear_gradient/style.css -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/radical_gradient/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/radical_gradient/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/radical_gradient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/radical_gradient/index.html -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/radical_gradient/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/radical_gradient/sketch.js -------------------------------------------------------------------------------- /p5_hacks/Gradient_effect/radical_gradient/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/Gradient_effect/radical_gradient/style.css -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/blueSky/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/blueSky/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/assets/AoyagiKouzanTOTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/blueSky/assets/AoyagiKouzanTOTF.otf -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/assets/KouzanMouhituFontOTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/blueSky/assets/KouzanMouhituFontOTF.otf -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/assets/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/blueSky/assets/sky.png -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/blueSky/index.html -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/blueSky/sketch.js -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/snow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/blueSky/snow.js -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/blueSky/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #fff; /*color name: 錆鼠 さびねず 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/assets/AoyagiKouzanTOTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/assets/AoyagiKouzanTOTF.otf -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/assets/KouzanMouhituFontOTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/assets/KouzanMouhituFontOTF.otf -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/assets/greenTea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/assets/greenTea.png -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/assets/tea.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/assets/tea.ai -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/assets/tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/assets/tea.png -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/assets/tea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/assets/tea.svg -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/index.html -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/sketch.js -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #fff; /*color name: 錆鼠 さびねず 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/greenTea/vapor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/greenTea/vapor.js -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/redCherryBlossoms/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/redCherryBlossoms/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/redCherryBlossoms/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/redCherryBlossoms/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/redCherryBlossoms/assets/KouzanMouhituFontOTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/redCherryBlossoms/assets/KouzanMouhituFontOTF.otf -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/redCherryBlossoms/assets/blossom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/redCherryBlossoms/assets/blossom.png -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/redCherryBlossoms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/redCherryBlossoms/index.html -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/redCherryBlossoms/petal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/redCherryBlossoms/petal.js -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/redCherryBlossoms/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/redCherryBlossoms/sketch.js -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/redCherryBlossoms/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: black; 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/whiteSnow/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/whiteSnow/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/assets/AoyagiKouzanTOTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/whiteSnow/assets/AoyagiKouzanTOTF.otf -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/assets/KouzanMouhituFontOTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/whiteSnow/assets/KouzanMouhituFontOTF.otf -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/assets/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/whiteSnow/assets/snow.png -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/whiteSnow/index.html -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/whiteSnow/sketch.js -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/snow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/cut-out_effect/whiteSnow/snow.js -------------------------------------------------------------------------------- /p5_hacks/cut-out_effect/whiteSnow/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #fff; /*color name: 錆鼠 さびねず 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/AlexBrush-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/AlexBrush-Regular.ttf -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/coffee.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/coffee.ai -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/coffee.png -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/rainDrops1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/rainDrops1.png -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/rainDrops2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/rainDrops2.png -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/rainDrops3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/rainDrops3.png -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/rainDrops4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/rainDrops4.png -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/assets/sapa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/assets/sapa.png -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/index.html -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredImages/sketch.js -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredImages/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #000; 3 | } 4 | -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredRects/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredRects/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredRects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredRects/index.html -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredRects/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredRects/sketch.js -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredRects/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredRects/style.css -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredTexts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredTexts/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredTexts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredTexts/index.html -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredTexts/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredTexts/sketch.js -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/blurredTexts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/blurredTexts/style.css -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/depth-of-field-effect/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/depth-of-field-effect/.DS_Store -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/depth-of-field-effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/depth-of-field-effect/index.html -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/depth-of-field-effect/marble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/depth-of-field-effect/marble.js -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/depth-of-field-effect/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/depth-of-field-effect/sketch.js -------------------------------------------------------------------------------- /p5_hacks/fast_blur_effect/depth-of-field-effect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/p5_hacks/fast_blur_effect/depth-of-field-effect/style.css -------------------------------------------------------------------------------- /readMeImages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/.DS_Store -------------------------------------------------------------------------------- /readMeImages/ComingSoon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/.DS_Store -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon0.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon1.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon10.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon2.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon3.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon4.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon5.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon6.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon7.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon8.png -------------------------------------------------------------------------------- /readMeImages/ComingSoon/ComingSoon9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/ComingSoon/ComingSoon9.png -------------------------------------------------------------------------------- /readMeImages/MathFlower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/MathFlower.png -------------------------------------------------------------------------------- /readMeImages/faceAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/faceAPI.png -------------------------------------------------------------------------------- /readMeImages/facemesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/facemesh.png -------------------------------------------------------------------------------- /readMeImages/fastBlurEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/fastBlurEffect.png -------------------------------------------------------------------------------- /readMeImages/glowEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/glowEffect.png -------------------------------------------------------------------------------- /readMeImages/gradientEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/gradientEffect.png -------------------------------------------------------------------------------- /readMeImages/handsDetection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/handsDetection.png -------------------------------------------------------------------------------- /readMeImages/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/planet.png -------------------------------------------------------------------------------- /readMeImages/polarCoordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/polarCoordinates.png -------------------------------------------------------------------------------- /readMeImages/soundReactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/soundReactive.png -------------------------------------------------------------------------------- /readMeImages/sphericalCoordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/sphericalCoordinates.png -------------------------------------------------------------------------------- /readMeImages/studyWithMe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/studyWithMe.png -------------------------------------------------------------------------------- /readMeImages/toroidalCoordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/toroidalCoordinates.png -------------------------------------------------------------------------------- /readMeImages/waterSurface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creativeguru97/YouTube_tutorial/HEAD/readMeImages/waterSurface.png --------------------------------------------------------------------------------