├── .gitignore ├── LICENSE ├── README.md ├── appcast.xml ├── full-reference.md ├── img └── Preview@2x.png ├── p5.sketchplugin └── Contents │ ├── Resources │ ├── codemirror.css │ ├── codemirror.js │ ├── editor.html │ ├── javascript.js │ ├── jquery-3.2.1.min.js │ └── p5-light.css │ └── Sketch │ ├── 2d_primitives.js │ ├── MochaJSDelegate.js │ ├── array_functions.js │ ├── conversion.js │ ├── manifest.json │ ├── notsupported.js │ ├── p5.js │ └── utils.js └── reference.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ~$appcast.xml 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/README.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/appcast.xml -------------------------------------------------------------------------------- /full-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/full-reference.md -------------------------------------------------------------------------------- /img/Preview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/img/Preview@2x.png -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Resources/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Resources/codemirror.css -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Resources/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Resources/codemirror.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Resources/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Resources/editor.html -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Resources/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Resources/javascript.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Resources/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Resources/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Resources/p5-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Resources/p5-light.css -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Sketch/2d_primitives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Sketch/2d_primitives.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Sketch/MochaJSDelegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Sketch/MochaJSDelegate.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Sketch/array_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Sketch/array_functions.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Sketch/conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Sketch/conversion.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Sketch/notsupported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Sketch/notsupported.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Sketch/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Sketch/p5.js -------------------------------------------------------------------------------- /p5.sketchplugin/Contents/Sketch/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/p5.sketchplugin/Contents/Sketch/utils.js -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopocolo/p5-sketchplugin/HEAD/reference.md --------------------------------------------------------------------------------