p5js-starter-template/sketch.js

14 lines
192 B
JavaScript
Raw Normal View History

2025-02-19 02:12:12 +00:00
// Single-sketch example
function setup (){
createCanvas (800, 600);
}
function draw(){
background(100);
fill(255);
noStroke();
rectMode(CENTER);
rect(mouseX, mouseY, 50, 50);
}