├── .env ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── assets │ ├── andrew-phillips-22549.jpg │ ├── annie-spratt-79272.jpg │ ├── beesandbombs │ │ ├── blob.gif │ │ ├── bouncers.gif │ │ ├── boxes.gif │ │ ├── bubbles2.gif │ │ ├── cubewave.gif │ │ ├── dot-line-wave.gif │ │ ├── friendly-blocks.gif │ │ ├── hexagon.gif │ │ ├── out.gif │ │ ├── spins.gif │ │ ├── spiralbig.gif │ │ ├── spiraldots.gif │ │ ├── wave_d.gif │ │ └── weaves.gif │ ├── card.gif │ ├── cartesian.jpg │ ├── chrome.gif │ ├── codepen.png │ ├── gems-explain.jpg │ ├── gems.gif │ ├── gems.png │ ├── generative-gestaltung-1.jpg │ ├── generative-gestaltung-2.jpg │ ├── generative-gestaltung-3.png │ ├── generative-gestaltung-4.jpg │ ├── glossy.gif │ ├── iconmonstr-crop-10.svg │ ├── iconmonstr-ruler-19.svg │ ├── iconmonstr-ruler-25.svg │ ├── iconmonstr-ruler-26.svg │ ├── iconmonstr-ruler-32.svg │ ├── knob.svg │ ├── lever.gif │ ├── manypolygons.gif │ ├── math.svg │ ├── measure.jpg │ ├── netmag.gif │ ├── octagon.jpg │ ├── parrots │ │ ├── aussiecongaparrot.gif │ │ ├── aussieparrot.gif │ │ ├── aussiereversecongaparrot.gif │ │ ├── bananaparrot.gif │ │ ├── blondesassyparrot.gif │ │ ├── bluescluesparrot.gif │ │ ├── boredparrot.gif │ │ ├── chillparrot.gif │ │ ├── christmasparrot.gif │ │ ├── coffeeparrot.gif │ │ ├── confusedparrot.gif │ │ ├── congaparrot.gif │ │ ├── congapartyparrot.gif │ │ ├── darkbeerparrot.gif │ │ ├── dealwithitparrot.gif │ │ ├── dreidelparrot.gif │ │ ├── explodyparrot.gif │ │ ├── fastparrot.gif │ │ ├── fieriparrot.gif │ │ ├── fiestaparrot.gif │ │ ├── gentlemanparrot.gif │ │ ├── gothparrot.gif │ │ ├── halalparrot.gif │ │ ├── hamburgerparrot.gif │ │ ├── harrypotterparrot.gif │ │ ├── hd │ │ │ ├── christmasparrot.gif │ │ │ ├── congaparrot.gif │ │ │ ├── dealwithitparrot.gif │ │ │ ├── donutparrot.gif │ │ │ ├── gentlemanparrot.gif │ │ │ ├── middleparrot.gif │ │ │ ├── parrot.gif │ │ │ ├── popcornparrot.gif │ │ │ ├── rightparrot.gif │ │ │ ├── sadparrot.gif │ │ │ ├── shuffleparrot.gif │ │ │ └── wendyparrot.gif │ │ ├── ice-cream-parrot.gif │ │ ├── loveparrot.gif │ │ ├── margaritaparrot.gif │ │ ├── middleparrot.gif │ │ ├── moonwalkingparrot.gif │ │ ├── nyanparrot.gif │ │ ├── oldtimeyparrot.gif │ │ ├── oriolesparrot.gif │ │ ├── parrot.gif │ │ ├── parrotbeer.gif │ │ ├── parrotcop.gif │ │ ├── parrotdad.gif │ │ ├── parrotmustache.gif │ │ ├── parrotsleep.gif │ │ ├── parrotwave1.gif │ │ ├── parrotwave2.gif │ │ ├── parrotwave3.gif │ │ ├── parrotwave4.gif │ │ ├── parrotwave5.gif │ │ ├── parrotwave6.gif │ │ ├── parrotwave7.gif │ │ ├── partyparrot.gif │ │ ├── pizzaparrot.gif │ │ ├── reversecongaparrot.gif │ │ ├── rightparrot.gif │ │ ├── sadparrot.gif │ │ ├── sassyparrot.gif │ │ ├── shipitparrot.gif │ │ ├── shufflefurtherparrot.gif │ │ ├── shuffleparrot.gif │ │ ├── shufflepartyparrot.gif │ │ ├── skiparrot.gif │ │ ├── slowparrot.gif │ │ ├── stableparrot.gif │ │ ├── thumbsupparrot.gif │ │ ├── tripletsparrot.gif │ │ ├── twinsparrot.gif │ │ ├── upvotepartyparrot.gif │ │ └── witnessprotectionparrot.gif │ ├── paths.gif │ ├── polar.jpg │ ├── shadow.gif │ ├── slider.svg │ ├── some-words.gif │ ├── sorcery.gif │ ├── splash-explain.jpg │ ├── splash.gif │ ├── swimmer.gif │ ├── toggle.svg │ ├── topography.gif │ ├── uber.gif │ ├── winkervsbecks.jpg │ └── work │ │ ├── chillwave-alt.gif │ │ ├── core.gif │ │ ├── napoleon-theorem.gif │ │ ├── oam-alt.gif │ │ ├── pizza-theorem.gif │ │ ├── reactive-o.gif │ │ ├── touch-id.gif │ │ ├── triangleninja.gif │ │ └── truncation.gif ├── components │ ├── chillwave.js │ ├── code-pane.js │ ├── codepen.js │ ├── embed.js │ ├── heading.js │ ├── index.js │ ├── law-of-cosines.js │ ├── text.js │ └── with-type.js ├── examples │ ├── bounce.js │ ├── cartesian-coords.js │ ├── hex-a-portal.js │ ├── hexagon.js │ ├── index.js │ ├── metaball.js │ ├── oscillation-demos.js │ ├── polar-coords.js │ ├── polar-pattern.js │ ├── polar-polygon.js │ ├── polygon-generator.js │ ├── right-angled-triangle.js │ ├── sa-15-process.js │ ├── sine-snippets.js │ ├── sinus.js │ ├── solving-right-angled-triangle.js │ ├── splash.js │ ├── trig-functions.js │ ├── trigonometry.js │ └── waves-with-offset │ │ ├── balls.css │ │ ├── index.js │ │ └── waves-with-offset.js ├── images.js ├── index.css ├── index.js ├── presentation.js ├── prism.css ├── registerServiceWorker.js ├── slides │ ├── coordinate-geometry.js │ ├── index.js │ ├── intro.js │ ├── oscillations.js │ ├── outro.js │ └── solving-triangles.js ├── tachyons.css └── theme.js └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | NODE_PATH=src -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/assets/andrew-phillips-22549.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/andrew-phillips-22549.jpg -------------------------------------------------------------------------------- /src/assets/annie-spratt-79272.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/annie-spratt-79272.jpg -------------------------------------------------------------------------------- /src/assets/beesandbombs/blob.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/blob.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/bouncers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/bouncers.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/boxes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/boxes.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/bubbles2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/bubbles2.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/cubewave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/cubewave.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/dot-line-wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/dot-line-wave.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/friendly-blocks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/friendly-blocks.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/hexagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/hexagon.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/out.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/spins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/spins.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/spiralbig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/spiralbig.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/spiraldots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/spiraldots.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/wave_d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/wave_d.gif -------------------------------------------------------------------------------- /src/assets/beesandbombs/weaves.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/beesandbombs/weaves.gif -------------------------------------------------------------------------------- /src/assets/card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/card.gif -------------------------------------------------------------------------------- /src/assets/cartesian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/cartesian.jpg -------------------------------------------------------------------------------- /src/assets/chrome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/chrome.gif -------------------------------------------------------------------------------- /src/assets/codepen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/codepen.png -------------------------------------------------------------------------------- /src/assets/gems-explain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/gems-explain.jpg -------------------------------------------------------------------------------- /src/assets/gems.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/gems.gif -------------------------------------------------------------------------------- /src/assets/gems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/gems.png -------------------------------------------------------------------------------- /src/assets/generative-gestaltung-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/generative-gestaltung-1.jpg -------------------------------------------------------------------------------- /src/assets/generative-gestaltung-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/generative-gestaltung-2.jpg -------------------------------------------------------------------------------- /src/assets/generative-gestaltung-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/generative-gestaltung-3.png -------------------------------------------------------------------------------- /src/assets/generative-gestaltung-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/generative-gestaltung-4.jpg -------------------------------------------------------------------------------- /src/assets/glossy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/glossy.gif -------------------------------------------------------------------------------- /src/assets/iconmonstr-crop-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/iconmonstr-crop-10.svg -------------------------------------------------------------------------------- /src/assets/iconmonstr-ruler-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/iconmonstr-ruler-19.svg -------------------------------------------------------------------------------- /src/assets/iconmonstr-ruler-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/iconmonstr-ruler-25.svg -------------------------------------------------------------------------------- /src/assets/iconmonstr-ruler-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/iconmonstr-ruler-26.svg -------------------------------------------------------------------------------- /src/assets/iconmonstr-ruler-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/iconmonstr-ruler-32.svg -------------------------------------------------------------------------------- /src/assets/knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/knob.svg -------------------------------------------------------------------------------- /src/assets/lever.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/lever.gif -------------------------------------------------------------------------------- /src/assets/manypolygons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/manypolygons.gif -------------------------------------------------------------------------------- /src/assets/math.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/math.svg -------------------------------------------------------------------------------- /src/assets/measure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/measure.jpg -------------------------------------------------------------------------------- /src/assets/netmag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/netmag.gif -------------------------------------------------------------------------------- /src/assets/octagon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/octagon.jpg -------------------------------------------------------------------------------- /src/assets/parrots/aussiecongaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/aussiecongaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/aussieparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/aussieparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/aussiereversecongaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/aussiereversecongaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/bananaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/bananaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/blondesassyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/blondesassyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/bluescluesparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/bluescluesparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/boredparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/boredparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/chillparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/chillparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/christmasparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/christmasparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/coffeeparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/coffeeparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/confusedparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/confusedparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/congaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/congaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/congapartyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/congapartyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/darkbeerparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/darkbeerparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/dealwithitparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/dealwithitparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/dreidelparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/dreidelparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/explodyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/explodyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/fastparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/fastparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/fieriparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/fieriparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/fiestaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/fiestaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/gentlemanparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/gentlemanparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/gothparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/gothparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/halalparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/halalparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hamburgerparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hamburgerparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/harrypotterparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/harrypotterparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/christmasparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/christmasparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/congaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/congaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/dealwithitparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/dealwithitparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/donutparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/donutparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/gentlemanparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/gentlemanparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/middleparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/middleparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/parrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/parrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/popcornparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/popcornparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/rightparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/rightparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/sadparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/sadparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/shuffleparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/shuffleparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/hd/wendyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/hd/wendyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/ice-cream-parrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/ice-cream-parrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/loveparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/loveparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/margaritaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/margaritaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/middleparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/middleparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/moonwalkingparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/moonwalkingparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/nyanparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/nyanparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/oldtimeyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/oldtimeyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/oriolesparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/oriolesparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotbeer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotbeer.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotcop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotcop.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotdad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotdad.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotmustache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotmustache.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotsleep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotsleep.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotwave1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotwave1.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotwave2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotwave2.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotwave3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotwave3.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotwave4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotwave4.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotwave5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotwave5.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotwave6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotwave6.gif -------------------------------------------------------------------------------- /src/assets/parrots/parrotwave7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/parrotwave7.gif -------------------------------------------------------------------------------- /src/assets/parrots/partyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/partyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/pizzaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/pizzaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/reversecongaparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/reversecongaparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/rightparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/rightparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/sadparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/sadparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/sassyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/sassyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/shipitparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/shipitparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/shufflefurtherparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/shufflefurtherparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/shuffleparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/shuffleparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/shufflepartyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/shufflepartyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/skiparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/skiparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/slowparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/slowparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/stableparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/stableparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/thumbsupparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/thumbsupparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/tripletsparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/tripletsparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/twinsparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/twinsparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/upvotepartyparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/upvotepartyparrot.gif -------------------------------------------------------------------------------- /src/assets/parrots/witnessprotectionparrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/parrots/witnessprotectionparrot.gif -------------------------------------------------------------------------------- /src/assets/paths.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/paths.gif -------------------------------------------------------------------------------- /src/assets/polar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/polar.jpg -------------------------------------------------------------------------------- /src/assets/shadow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/shadow.gif -------------------------------------------------------------------------------- /src/assets/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/slider.svg -------------------------------------------------------------------------------- /src/assets/some-words.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/some-words.gif -------------------------------------------------------------------------------- /src/assets/sorcery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/sorcery.gif -------------------------------------------------------------------------------- /src/assets/splash-explain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/splash-explain.jpg -------------------------------------------------------------------------------- /src/assets/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/splash.gif -------------------------------------------------------------------------------- /src/assets/swimmer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/swimmer.gif -------------------------------------------------------------------------------- /src/assets/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/toggle.svg -------------------------------------------------------------------------------- /src/assets/topography.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/topography.gif -------------------------------------------------------------------------------- /src/assets/uber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/uber.gif -------------------------------------------------------------------------------- /src/assets/winkervsbecks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/winkervsbecks.jpg -------------------------------------------------------------------------------- /src/assets/work/chillwave-alt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/chillwave-alt.gif -------------------------------------------------------------------------------- /src/assets/work/core.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/core.gif -------------------------------------------------------------------------------- /src/assets/work/napoleon-theorem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/napoleon-theorem.gif -------------------------------------------------------------------------------- /src/assets/work/oam-alt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/oam-alt.gif -------------------------------------------------------------------------------- /src/assets/work/pizza-theorem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/pizza-theorem.gif -------------------------------------------------------------------------------- /src/assets/work/reactive-o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/reactive-o.gif -------------------------------------------------------------------------------- /src/assets/work/touch-id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/touch-id.gif -------------------------------------------------------------------------------- /src/assets/work/triangleninja.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/triangleninja.gif -------------------------------------------------------------------------------- /src/assets/work/truncation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/assets/work/truncation.gif -------------------------------------------------------------------------------- /src/components/chillwave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/chillwave.js -------------------------------------------------------------------------------- /src/components/code-pane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/code-pane.js -------------------------------------------------------------------------------- /src/components/codepen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/codepen.js -------------------------------------------------------------------------------- /src/components/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/embed.js -------------------------------------------------------------------------------- /src/components/heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/heading.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/law-of-cosines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/law-of-cosines.js -------------------------------------------------------------------------------- /src/components/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/text.js -------------------------------------------------------------------------------- /src/components/with-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/components/with-type.js -------------------------------------------------------------------------------- /src/examples/bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/bounce.js -------------------------------------------------------------------------------- /src/examples/cartesian-coords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/cartesian-coords.js -------------------------------------------------------------------------------- /src/examples/hex-a-portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/hex-a-portal.js -------------------------------------------------------------------------------- /src/examples/hexagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/hexagon.js -------------------------------------------------------------------------------- /src/examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/index.js -------------------------------------------------------------------------------- /src/examples/metaball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/metaball.js -------------------------------------------------------------------------------- /src/examples/oscillation-demos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/oscillation-demos.js -------------------------------------------------------------------------------- /src/examples/polar-coords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/polar-coords.js -------------------------------------------------------------------------------- /src/examples/polar-pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/polar-pattern.js -------------------------------------------------------------------------------- /src/examples/polar-polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/polar-polygon.js -------------------------------------------------------------------------------- /src/examples/polygon-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/polygon-generator.js -------------------------------------------------------------------------------- /src/examples/right-angled-triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/right-angled-triangle.js -------------------------------------------------------------------------------- /src/examples/sa-15-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/sa-15-process.js -------------------------------------------------------------------------------- /src/examples/sine-snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/sine-snippets.js -------------------------------------------------------------------------------- /src/examples/sinus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/sinus.js -------------------------------------------------------------------------------- /src/examples/solving-right-angled-triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/solving-right-angled-triangle.js -------------------------------------------------------------------------------- /src/examples/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/splash.js -------------------------------------------------------------------------------- /src/examples/trig-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/trig-functions.js -------------------------------------------------------------------------------- /src/examples/trigonometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/trigonometry.js -------------------------------------------------------------------------------- /src/examples/waves-with-offset/balls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/waves-with-offset/balls.css -------------------------------------------------------------------------------- /src/examples/waves-with-offset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/waves-with-offset/index.js -------------------------------------------------------------------------------- /src/examples/waves-with-offset/waves-with-offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/examples/waves-with-offset/waves-with-offset.js -------------------------------------------------------------------------------- /src/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/images.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/presentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/presentation.js -------------------------------------------------------------------------------- /src/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/prism.css -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/slides/coordinate-geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/slides/coordinate-geometry.js -------------------------------------------------------------------------------- /src/slides/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/slides/index.js -------------------------------------------------------------------------------- /src/slides/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/slides/intro.js -------------------------------------------------------------------------------- /src/slides/oscillations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/slides/oscillations.js -------------------------------------------------------------------------------- /src/slides/outro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/slides/outro.js -------------------------------------------------------------------------------- /src/slides/solving-triangles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/slides/solving-triangles.js -------------------------------------------------------------------------------- /src/tachyons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/tachyons.css -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/src/theme.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winkerVSbecks/mathematics-of-animation/HEAD/yarn.lock --------------------------------------------------------------------------------