├── .gitignore ├── README.md ├── SuperformulaSVG ├── SuperformulaSVG.pde └── parameters │ └── widest-range.json └── docs ├── five-by-five.png ├── full-window.png ├── superformula-equation.png └── two-by-three.png /.gitignore: -------------------------------------------------------------------------------- 1 | SuperformulaSVG/images/ 2 | Thumbs.db -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG/HEAD/README.md -------------------------------------------------------------------------------- /SuperformulaSVG/SuperformulaSVG.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG/HEAD/SuperformulaSVG/SuperformulaSVG.pde -------------------------------------------------------------------------------- /SuperformulaSVG/parameters/widest-range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG/HEAD/SuperformulaSVG/parameters/widest-range.json -------------------------------------------------------------------------------- /docs/five-by-five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG/HEAD/docs/five-by-five.png -------------------------------------------------------------------------------- /docs/full-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG/HEAD/docs/full-window.png -------------------------------------------------------------------------------- /docs/superformula-equation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG/HEAD/docs/superformula-equation.png -------------------------------------------------------------------------------- /docs/two-by-three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG/HEAD/docs/two-by-three.png --------------------------------------------------------------------------------