├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── documentation.md ├── examples ├── README.md ├── plotSvg_drawing_recorder │ ├── README.md │ ├── index.html │ ├── plotSvg_drawing_recorder.png │ ├── plotSvg_drawing_recorder.svg │ ├── plotSvg_drawing_recorder_sm.png │ └── sketch.js ├── plotSvg_face_flipbook │ ├── README.md │ ├── index.html │ ├── plotSvg_face_flipbook.gif │ └── sketch.js ├── plotSvg_generative │ ├── README.md │ ├── index.html │ ├── plotSvg_generative.png │ ├── plotSvg_generative.svg │ ├── plotSvg_generative_sm.png │ └── sketch.js ├── plotSvg_hatched_shapes │ ├── README.md │ ├── index.html │ ├── plotSvg_hatched_shapes.png │ ├── plotSvg_hatched_shapes.svg │ ├── plotSvg_hatched_shapes_sm.png │ └── sketch.js ├── plotSvg_hello_animating │ ├── README.md │ ├── index.html │ ├── plotSvg_hello_animating.png │ ├── plotSvg_hello_animating.svg │ ├── plotSvg_hello_animating_sm.png │ └── sketch.js ├── plotSvg_hello_static │ ├── README.md │ ├── index.html │ ├── plotSvg_hello_static.png │ ├── plotSvg_hello_static.svg │ ├── plotSvg_hello_static_sm.png │ └── sketch.js ├── plotSvg_hershey_text │ ├── hershey_text.png │ ├── hershey_text.svg │ ├── hershey_text_sm.png │ ├── index.html │ ├── sketch.js │ └── style.css ├── plotSvg_instancemode │ ├── README.md │ ├── index.html │ ├── plotSvg_instancemode.png │ ├── plotSvg_instancemode.svg │ ├── plotSvg_instancemode_sm.png │ └── sketch.js ├── plotSvg_particle_paths │ ├── README.md │ ├── index.html │ ├── plotSvg_particle_paths.png │ ├── plotSvg_particle_paths.svg │ ├── plotSvg_particle_paths_sm.png │ └── sketch.js ├── plotSvg_post_grouping │ ├── README.md │ ├── index.html │ ├── post_grouping.png │ ├── post_grouping.svg │ ├── post_grouping_sm.png │ ├── sketch.js │ └── style.css ├── plotSvg_powerstroke_WIP │ ├── BezierSegment.js │ ├── README.md │ ├── fit-curve.js │ ├── index.html │ ├── p5.PowerStroke.js │ ├── sketch.js │ ├── sketchUI.js │ └── svg │ │ ├── example_powerstroke_svgs │ │ ├── powerstroke_drawing_curve.svg │ │ └── powerstroke_drawing_simplest.svg │ │ └── plotSvg_powerstroke_wavy.svg ├── plotSvg_smorgasbord │ ├── README.md │ ├── index.html │ ├── plotSvg_smorgasbord.png │ ├── plotSvg_smorgasbord.svg │ ├── plotSvg_smorgasbord_sm.png │ └── sketch.js └── plotSvg_svg_font_text │ ├── HersheySans1.svg │ ├── HersheyScript1.svg │ ├── README.md │ ├── index.html │ ├── sketch.js │ ├── style.css │ ├── svg_font_text.png │ ├── svg_font_text.svg │ └── svg_font_text_sm.png ├── images ├── bantam_artframe_plotter.jpg ├── bantam_tools_logo.png ├── cmu_school_of_art_logo.png └── studio_logo.png ├── lib └── p5.plotSvg.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | We welcome your contributions! ❤️🤖🎨 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/SECURITY.md -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/documentation.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/plotSvg_drawing_recorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_drawing_recorder/README.md -------------------------------------------------------------------------------- /examples/plotSvg_drawing_recorder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_drawing_recorder/index.html -------------------------------------------------------------------------------- /examples/plotSvg_drawing_recorder/plotSvg_drawing_recorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_drawing_recorder/plotSvg_drawing_recorder.png -------------------------------------------------------------------------------- /examples/plotSvg_drawing_recorder/plotSvg_drawing_recorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_drawing_recorder/plotSvg_drawing_recorder.svg -------------------------------------------------------------------------------- /examples/plotSvg_drawing_recorder/plotSvg_drawing_recorder_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_drawing_recorder/plotSvg_drawing_recorder_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_drawing_recorder/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_drawing_recorder/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_face_flipbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_face_flipbook/README.md -------------------------------------------------------------------------------- /examples/plotSvg_face_flipbook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_face_flipbook/index.html -------------------------------------------------------------------------------- /examples/plotSvg_face_flipbook/plotSvg_face_flipbook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_face_flipbook/plotSvg_face_flipbook.gif -------------------------------------------------------------------------------- /examples/plotSvg_face_flipbook/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_face_flipbook/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_generative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_generative/README.md -------------------------------------------------------------------------------- /examples/plotSvg_generative/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_generative/index.html -------------------------------------------------------------------------------- /examples/plotSvg_generative/plotSvg_generative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_generative/plotSvg_generative.png -------------------------------------------------------------------------------- /examples/plotSvg_generative/plotSvg_generative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_generative/plotSvg_generative.svg -------------------------------------------------------------------------------- /examples/plotSvg_generative/plotSvg_generative_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_generative/plotSvg_generative_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_generative/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_generative/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_hatched_shapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hatched_shapes/README.md -------------------------------------------------------------------------------- /examples/plotSvg_hatched_shapes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hatched_shapes/index.html -------------------------------------------------------------------------------- /examples/plotSvg_hatched_shapes/plotSvg_hatched_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hatched_shapes/plotSvg_hatched_shapes.png -------------------------------------------------------------------------------- /examples/plotSvg_hatched_shapes/plotSvg_hatched_shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hatched_shapes/plotSvg_hatched_shapes.svg -------------------------------------------------------------------------------- /examples/plotSvg_hatched_shapes/plotSvg_hatched_shapes_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hatched_shapes/plotSvg_hatched_shapes_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_hatched_shapes/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hatched_shapes/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_hello_animating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_animating/README.md -------------------------------------------------------------------------------- /examples/plotSvg_hello_animating/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_animating/index.html -------------------------------------------------------------------------------- /examples/plotSvg_hello_animating/plotSvg_hello_animating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_animating/plotSvg_hello_animating.png -------------------------------------------------------------------------------- /examples/plotSvg_hello_animating/plotSvg_hello_animating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_animating/plotSvg_hello_animating.svg -------------------------------------------------------------------------------- /examples/plotSvg_hello_animating/plotSvg_hello_animating_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_animating/plotSvg_hello_animating_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_hello_animating/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_animating/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_hello_static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_static/README.md -------------------------------------------------------------------------------- /examples/plotSvg_hello_static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_static/index.html -------------------------------------------------------------------------------- /examples/plotSvg_hello_static/plotSvg_hello_static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_static/plotSvg_hello_static.png -------------------------------------------------------------------------------- /examples/plotSvg_hello_static/plotSvg_hello_static.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_static/plotSvg_hello_static.svg -------------------------------------------------------------------------------- /examples/plotSvg_hello_static/plotSvg_hello_static_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_static/plotSvg_hello_static_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_hello_static/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hello_static/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_hershey_text/hershey_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hershey_text/hershey_text.png -------------------------------------------------------------------------------- /examples/plotSvg_hershey_text/hershey_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hershey_text/hershey_text.svg -------------------------------------------------------------------------------- /examples/plotSvg_hershey_text/hershey_text_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hershey_text/hershey_text_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_hershey_text/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hershey_text/index.html -------------------------------------------------------------------------------- /examples/plotSvg_hershey_text/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hershey_text/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_hershey_text/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_hershey_text/style.css -------------------------------------------------------------------------------- /examples/plotSvg_instancemode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_instancemode/README.md -------------------------------------------------------------------------------- /examples/plotSvg_instancemode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_instancemode/index.html -------------------------------------------------------------------------------- /examples/plotSvg_instancemode/plotSvg_instancemode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_instancemode/plotSvg_instancemode.png -------------------------------------------------------------------------------- /examples/plotSvg_instancemode/plotSvg_instancemode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_instancemode/plotSvg_instancemode.svg -------------------------------------------------------------------------------- /examples/plotSvg_instancemode/plotSvg_instancemode_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_instancemode/plotSvg_instancemode_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_instancemode/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_instancemode/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_particle_paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_particle_paths/README.md -------------------------------------------------------------------------------- /examples/plotSvg_particle_paths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_particle_paths/index.html -------------------------------------------------------------------------------- /examples/plotSvg_particle_paths/plotSvg_particle_paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_particle_paths/plotSvg_particle_paths.png -------------------------------------------------------------------------------- /examples/plotSvg_particle_paths/plotSvg_particle_paths.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_particle_paths/plotSvg_particle_paths.svg -------------------------------------------------------------------------------- /examples/plotSvg_particle_paths/plotSvg_particle_paths_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_particle_paths/plotSvg_particle_paths_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_particle_paths/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_particle_paths/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_post_grouping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_post_grouping/README.md -------------------------------------------------------------------------------- /examples/plotSvg_post_grouping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_post_grouping/index.html -------------------------------------------------------------------------------- /examples/plotSvg_post_grouping/post_grouping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_post_grouping/post_grouping.png -------------------------------------------------------------------------------- /examples/plotSvg_post_grouping/post_grouping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_post_grouping/post_grouping.svg -------------------------------------------------------------------------------- /examples/plotSvg_post_grouping/post_grouping_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_post_grouping/post_grouping_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_post_grouping/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_post_grouping/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_post_grouping/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_post_grouping/style.css -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/BezierSegment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/BezierSegment.js -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/README.md: -------------------------------------------------------------------------------- 1 | # plotSvg_powerstroke Example 2 | 3 | **WORK IN PROGRESS — NOTHING TO SEE HERE YET** 4 | 5 | --- 6 | 7 | Todo: 8 | 9 | * Wacom 10 | 11 | 12 | -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/fit-curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/fit-curve.js -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/index.html -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/p5.PowerStroke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/p5.PowerStroke.js -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/sketchUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/sketchUI.js -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/svg/example_powerstroke_svgs/powerstroke_drawing_curve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/svg/example_powerstroke_svgs/powerstroke_drawing_curve.svg -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/svg/example_powerstroke_svgs/powerstroke_drawing_simplest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/svg/example_powerstroke_svgs/powerstroke_drawing_simplest.svg -------------------------------------------------------------------------------- /examples/plotSvg_powerstroke_WIP/svg/plotSvg_powerstroke_wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_powerstroke_WIP/svg/plotSvg_powerstroke_wavy.svg -------------------------------------------------------------------------------- /examples/plotSvg_smorgasbord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_smorgasbord/README.md -------------------------------------------------------------------------------- /examples/plotSvg_smorgasbord/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_smorgasbord/index.html -------------------------------------------------------------------------------- /examples/plotSvg_smorgasbord/plotSvg_smorgasbord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_smorgasbord/plotSvg_smorgasbord.png -------------------------------------------------------------------------------- /examples/plotSvg_smorgasbord/plotSvg_smorgasbord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_smorgasbord/plotSvg_smorgasbord.svg -------------------------------------------------------------------------------- /examples/plotSvg_smorgasbord/plotSvg_smorgasbord_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_smorgasbord/plotSvg_smorgasbord_sm.png -------------------------------------------------------------------------------- /examples/plotSvg_smorgasbord/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_smorgasbord/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/HersheySans1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/HersheySans1.svg -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/HersheyScript1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/HersheyScript1.svg -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/README.md -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/index.html -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/sketch.js -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/style.css -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/svg_font_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/svg_font_text.png -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/svg_font_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/svg_font_text.svg -------------------------------------------------------------------------------- /examples/plotSvg_svg_font_text/svg_font_text_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/examples/plotSvg_svg_font_text/svg_font_text_sm.png -------------------------------------------------------------------------------- /images/bantam_artframe_plotter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/images/bantam_artframe_plotter.jpg -------------------------------------------------------------------------------- /images/bantam_tools_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/images/bantam_tools_logo.png -------------------------------------------------------------------------------- /images/cmu_school_of_art_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/images/cmu_school_of_art_logo.png -------------------------------------------------------------------------------- /images/studio_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/images/studio_logo.png -------------------------------------------------------------------------------- /lib/p5.plotSvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/lib/p5.plotSvg.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golanlevin/p5.plotSvg/HEAD/package.json --------------------------------------------------------------------------------