├── .gitignore ├── CircleAndRectangle ├── CircleAndRectangle.pde └── svg │ └── output.svg ├── Help ├── License.md └── images │ └── hero.png ├── HexSpin ├── HexSpin.pde └── svg │ └── output.svg ├── RandomArcs ├── RandomArcs.pde └── svg │ ├── output-000085.svg │ └── output-000151.svg ├── RandomShapes ├── RandomShapes.pde └── svg │ ├── output-000156.svg │ └── output-000200.svg ├── Readme.md └── SunflowerPattern ├── SunflowerPattern.pde └── svg └── output.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/.gitignore -------------------------------------------------------------------------------- /CircleAndRectangle/CircleAndRectangle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/CircleAndRectangle/CircleAndRectangle.pde -------------------------------------------------------------------------------- /CircleAndRectangle/svg/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/CircleAndRectangle/svg/output.svg -------------------------------------------------------------------------------- /Help/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/Help/License.md -------------------------------------------------------------------------------- /Help/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/Help/images/hero.png -------------------------------------------------------------------------------- /HexSpin/HexSpin.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/HexSpin/HexSpin.pde -------------------------------------------------------------------------------- /HexSpin/svg/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/HexSpin/svg/output.svg -------------------------------------------------------------------------------- /RandomArcs/RandomArcs.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/RandomArcs/RandomArcs.pde -------------------------------------------------------------------------------- /RandomArcs/svg/output-000085.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/RandomArcs/svg/output-000085.svg -------------------------------------------------------------------------------- /RandomArcs/svg/output-000151.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/RandomArcs/svg/output-000151.svg -------------------------------------------------------------------------------- /RandomShapes/RandomShapes.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/RandomShapes/RandomShapes.pde -------------------------------------------------------------------------------- /RandomShapes/svg/output-000156.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/RandomShapes/svg/output-000156.svg -------------------------------------------------------------------------------- /RandomShapes/svg/output-000200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/RandomShapes/svg/output-000200.svg -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/Readme.md -------------------------------------------------------------------------------- /SunflowerPattern/SunflowerPattern.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/SunflowerPattern/SunflowerPattern.pde -------------------------------------------------------------------------------- /SunflowerPattern/svg/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjango/Processing-SVG-experiments/HEAD/SunflowerPattern/svg/output.svg --------------------------------------------------------------------------------