├── .gitignore ├── LICENSE ├── README.md ├── image ├── sketch001.png ├── sketch002.gif ├── sketch004.gif ├── sketch005.gif ├── sketch006.png ├── sketch007.jpg ├── sketch008.png ├── sketch009.jpg ├── sketch011.gif ├── sketch012.gif └── sketch013.gif ├── sketch001 └── sketch001.pde ├── sketch002 ├── Planet.pde └── sketch002.pde ├── sketch004 └── sketch004.pde ├── sketch005 ├── Easing.pde ├── MyBox.pde └── sketch005.pde ├── sketch006 ├── Easing.pde ├── MyBox.pde └── sketch006.pde ├── sketch007 └── sketch007.pde ├── sketch008 └── sketch008.pde ├── sketch009 ├── data │ └── image.jpg └── sketch009.pde ├── sketch011 ├── Easing.pde └── sketch011.pde ├── sketch012 ├── Particle.pde ├── Particles.pde └── sketch012.pde └── sketch013 ├── Animator.pde ├── Easing.pde └── sketch013.pde /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/README.md -------------------------------------------------------------------------------- /image/sketch001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch001.png -------------------------------------------------------------------------------- /image/sketch002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch002.gif -------------------------------------------------------------------------------- /image/sketch004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch004.gif -------------------------------------------------------------------------------- /image/sketch005.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch005.gif -------------------------------------------------------------------------------- /image/sketch006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch006.png -------------------------------------------------------------------------------- /image/sketch007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch007.jpg -------------------------------------------------------------------------------- /image/sketch008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch008.png -------------------------------------------------------------------------------- /image/sketch009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch009.jpg -------------------------------------------------------------------------------- /image/sketch011.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch011.gif -------------------------------------------------------------------------------- /image/sketch012.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch012.gif -------------------------------------------------------------------------------- /image/sketch013.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/image/sketch013.gif -------------------------------------------------------------------------------- /sketch001/sketch001.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch001/sketch001.pde -------------------------------------------------------------------------------- /sketch002/Planet.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch002/Planet.pde -------------------------------------------------------------------------------- /sketch002/sketch002.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch002/sketch002.pde -------------------------------------------------------------------------------- /sketch004/sketch004.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch004/sketch004.pde -------------------------------------------------------------------------------- /sketch005/Easing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch005/Easing.pde -------------------------------------------------------------------------------- /sketch005/MyBox.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch005/MyBox.pde -------------------------------------------------------------------------------- /sketch005/sketch005.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch005/sketch005.pde -------------------------------------------------------------------------------- /sketch006/Easing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch006/Easing.pde -------------------------------------------------------------------------------- /sketch006/MyBox.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch006/MyBox.pde -------------------------------------------------------------------------------- /sketch006/sketch006.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch006/sketch006.pde -------------------------------------------------------------------------------- /sketch007/sketch007.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch007/sketch007.pde -------------------------------------------------------------------------------- /sketch008/sketch008.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch008/sketch008.pde -------------------------------------------------------------------------------- /sketch009/data/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch009/data/image.jpg -------------------------------------------------------------------------------- /sketch009/sketch009.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch009/sketch009.pde -------------------------------------------------------------------------------- /sketch011/Easing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch011/Easing.pde -------------------------------------------------------------------------------- /sketch011/sketch011.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch011/sketch011.pde -------------------------------------------------------------------------------- /sketch012/Particle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch012/Particle.pde -------------------------------------------------------------------------------- /sketch012/Particles.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch012/Particles.pde -------------------------------------------------------------------------------- /sketch012/sketch012.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch012/sketch012.pde -------------------------------------------------------------------------------- /sketch013/Animator.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch013/Animator.pde -------------------------------------------------------------------------------- /sketch013/Easing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch013/Easing.pde -------------------------------------------------------------------------------- /sketch013/sketch013.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapioca24/processing-works/HEAD/sketch013/sketch013.pde --------------------------------------------------------------------------------