Skip to content

Blue Circle

Prompt

Generate a p5.js sketch on a 400x400 canvas.
Draw a blue circle.
1
2
3
4
5
6
7
8
function setup() {
  createCanvas(400, 400);
}

function draw() {
  fill('blue'); 
  circle(200, 200, 100);
}

Copy code here:

https://editor.p5js.org/