Created
March 30, 2020 13:19
-
-
Save vagmi/6ac28aebd669db79159da9a0d6f25f0d to your computer and use it in GitHub Desktop.
for oorja
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function setup() { | |
createCanvas(400, 400); | |
} | |
function draw() { | |
background(220); | |
fill('black'); | |
circle(200,100,30); | |
fill('white'); | |
circle(200,130,50); | |
arc(200, 130, 30, 30, 0, PI/2); | |
circle(200,200,100); | |
fill('black'); | |
circle(190,120,5); | |
circle(210,120,5); | |
circle(200, 180, 5); | |
circle(200, 200, 5); | |
circle(200, 220, 5); | |
fill('orange') | |
circle(200,130, 5); | |
line(230,160,280,130); | |
line(170,160,120,130); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment