Skip to content

Instantly share code, notes, and snippets.

@kristw
Last active September 10, 2020 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristw/bb44c6733918d1dccfdd023b44020862 to your computer and use it in GitHub Desktop.
Save kristw/bb44c6733918d1dccfdd023b44020862 to your computer and use it in GitHub Desktop.
blog example: p5.js
import p5 from 'p5';
const p = new p5(function(sketch) {
sketch.setup = () => {
sketch.createCanvas(200, 200);
};
sketch.draw = () => {
sketch.background(0);
sketch.fill(255);
sketch.rect(100, 100, 50, 50);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment