p5js/sketch.js

9 lines
117 B
JavaScript
Raw Normal View History

2022-12-10 09:35:14 +00:00
function setup() {
2022-12-10 18:48:53 +00:00
cursor(CROSS);
createCanvas(600, 600);
2022-12-10 09:35:14 +00:00
}
function draw() {
2022-12-10 18:48:53 +00:00
background(64);
2022-12-10 09:35:14 +00:00
}