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.
Forks of this sketch will no longer be attributed to this sketch.
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.
CC Attribution NonCommercial ShareAlike
plotSvg_hello_animating
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 emonstrates how to use the p5.plotSvg library
// to export SVG files. Press 's' to export an SVG.
// Requires: https://cdn.jsdelivr.net/npm/p5.plotsvg@latest/lib/p5.plotSvg.js
// See: https://github.com/golanlevin/p5.plotSvg
// This line of code disables the p5.js "Friendly Error System" (FES),
// in order to prevent several distracting warnings:
p5.disableFriendlyErrors = true;
let bDoExportSvg = false;
function setup() {
// Postcard size: 6"x4" at 96 dpi
createCanvas(576, 384);
}
function keyPressed(){
if (key == 's'){
// Initiate SVG exporting
bDoExportSvg = true;
}
}
function draw(){
background(245);
strokeWeight(1.0);
stroke(0);
noFill();
if (bDoExportSvg){
// Begin exporting, if requested
beginRecordSVG(this, "plotSvg_hello_animating.svg");
}
// Draw your artwork here.
push();
translate(width/2, height/2);
beginShape();
for (let i=0; i<=400; i++){
let val = noise(i/100 + millis()/1000) - 0.5;
vertex(i-200, 200*val);
}
endShape();
rectMode(CENTER);
rect(0,0, 400,300);
pop();
if (bDoExportSvg){
// End exporting, if doing so
endRecordSVG();
bDoExportSvg = false;
}
}
See More Shortcuts
Please verify your email to comment
Verify Email