Skip to content

Instantly share code, notes, and snippets.

@mrzachxu
Created November 13, 2018 03:10
Show Gist options
  • Save mrzachxu/c4cdd57b6ce0096bdd0bd3c1e7db844d to your computer and use it in GitHub Desktop.
Save mrzachxu/c4cdd57b6ce0096bdd0bd3c1e7db844d to your computer and use it in GitHub Desktop.
function setup() {
createCanvas(500,500)
background(0,0,0)
ellipse()
}
function draw() {
ball()
rectangles()
}
function ball() {
ellipse(30,30,30)
fill(255,255,255)
stroke(255,255,255)
}
function rectangles() {
rect(20,20,30,30)
stroke(255,255,255)
fill(255,255,255)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment