Oh, that naughty sketch! Please let us know what the issue is below.
Apply Template
Applying this template will reset your sketch and remove all your changes. Are you sure you would like to continue?
Report Sketch
Report Comment
Please confirm that you would like to report the comment below.
We will review your submission and take any actions necessary per our Community Guidelines. In addition to reporting this comment, you can also block the user to prevent any future interactions.
Please report comments only when necessary. Unnecessary or abusive use of this tool may result in your own account being suspended.
Are you sure you want to delete your sketch?
Any files uploaded will be deleted as well.
Delete Comment?
This will also delete all the replies to this comment.
Delete this tab? Any code in it will be deleted as well.
Select a collection to submit your sketch
We Need Your Support
Since 2008, OpenProcessing has provided tools for creative coders to learn, create, and share over a million open source projects in a friendly environment.
Niche websites like ours need your continued support for future development and maintenance, while keeping it an ad-free platform that respects your data and privacy!
Please consider subscribing below to show your support with a "Plus" badge on your profile and get access to many other features!
Press 's' to export an SVG.
A fork of plotSvg_hello_animating by Golan Levin
CC Attribution NonCommercial ShareAlike
plotSvg_drawing_recorder
Levin
xxxxxxxxxx
// https://github.com/golanlevin/p5.plotSvg (v.0.1.x)
// A Plotter-Oriented SVG Exporter for p5.js
// Golan Levin, November 2024
//
// This sketch records a series of marks drawn by the user
// and exports an SVG file when the 's' key is pressed.
//
// Requires: https://cdn.jsdelivr.net/npm/p5.plotsvg@latest/lib/p5.plotSvg.js
// See: https://github.com/golanlevin/p5.plotSvg
p5.disableFriendlyErrors = true;
let bDoExportSvg = false;
let marks = [];
let currentMark = [];
function setup() {
// Postcard size: 6"x4" at 96 dpi
createCanvas(576, 384);
}
function keyPressed(){
if (key == 's'){
// Initiate SVG exporting
bDoExportSvg = true;
} else if (key == ' '){
// Clear recordings with spacebar
marks = [];
currentMark = [];
}
}
function mousePressed(){
currentMark = [];
currentMark.push(createVector(mouseX, mouseY));
}
function mouseDragged(){
currentMark.push(createVector(mouseX, mouseY));
}
function mouseReleased(){
if (currentMark){
marks.push(currentMark);
}
}
function draw(){
background(245);
strokeWeight(1);
stroke(0);
noFill();
if (bDoExportSvg){
// Begin exporting, if requested
beginRecordSVG(this, "plotSvg_drawing_recorder.svg");
}
// Draw each of the stored marks
for (let j=0; j<marks.length; j++){
beginShape();
for (let i=0; i<marks[j].length; i++){
vertex(marks[j][i].x, marks[j][i].y);
}
endShape();
}
// Draw the current (active) mark
beginShape();
for (let i=0; i<currentMark.length; i++){
vertex(currentMark[i].x, currentMark[i].y);
}
endShape();
if (bDoExportSvg){
// End exporting, if doing so
endRecordSVG();
bDoExportSvg = false;
}
}
See More Shortcuts
Please verify your email to comment
Verify Email