Test Post

sketch

function setup() {
  // put setup code here
 createCanvas(1000,1000);  
 background(0,0,0,95);
}

function draw() {
  // put drawing code here
  stroke(0);
  strokeWeight(1);
  ellipse(mouseX,mouseY,50,50);
}

 

This was my sketch! I liked making it, posting it was WAY harder???

Leave a Reply