├── .github └── workflows │ └── static.yml ├── .gitignore ├── LICENSE ├── README.md ├── css └── style.css ├── dist └── superformulasvg.min.js ├── docs ├── choice-screen.png ├── discover-mode.png ├── help-modal.png ├── inverted-colors.png ├── superformula-equation.png └── tune-mode.png ├── gulpfile.js ├── images └── social-media-image.jpg ├── index.html ├── js ├── app.js ├── drawing-functions.js ├── global-variables.js ├── help-modal.js ├── keyboard-controls.js ├── superformula-functions.js ├── ui-functions.js ├── utility-functions.js └── vendor │ ├── FileSaver.js │ └── paper-full.min.js └── package.json /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/css/style.css -------------------------------------------------------------------------------- /dist/superformulasvg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/dist/superformulasvg.min.js -------------------------------------------------------------------------------- /docs/choice-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/docs/choice-screen.png -------------------------------------------------------------------------------- /docs/discover-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/docs/discover-mode.png -------------------------------------------------------------------------------- /docs/help-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/docs/help-modal.png -------------------------------------------------------------------------------- /docs/inverted-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/docs/inverted-colors.png -------------------------------------------------------------------------------- /docs/superformula-equation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/docs/superformula-equation.png -------------------------------------------------------------------------------- /docs/tune-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/docs/tune-mode.png -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/social-media-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/images/social-media-image.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/app.js -------------------------------------------------------------------------------- /js/drawing-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/drawing-functions.js -------------------------------------------------------------------------------- /js/global-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/global-variables.js -------------------------------------------------------------------------------- /js/help-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/help-modal.js -------------------------------------------------------------------------------- /js/keyboard-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/keyboard-controls.js -------------------------------------------------------------------------------- /js/superformula-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/superformula-functions.js -------------------------------------------------------------------------------- /js/ui-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/ui-functions.js -------------------------------------------------------------------------------- /js/utility-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/utility-functions.js -------------------------------------------------------------------------------- /js/vendor/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/vendor/FileSaver.js -------------------------------------------------------------------------------- /js/vendor/paper-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/js/vendor/paper-full.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/SuperformulaSVG-for-web/HEAD/package.json --------------------------------------------------------------------------------