Skip to content

Instantly share code, notes, and snippets.

@rintukutum
Created February 27, 2020 05:47
Show Gist options
  • Select an option

  • Save rintukutum/943cbdde6f41bf4a22895661dddb74c6 to your computer and use it in GitHub Desktop.

Select an option

Save rintukutum/943cbdde6f41bf4a22895661dddb74c6 to your computer and use it in GitHub Desktop.
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
// orange circle
fill('orange');
circle(50,100,40);
// text for rintu
fill('white');
textAlign('center');
text('rintu',50,100);
// red circle
fill('red');
circle(150,100,90);
// text for Prasanna
fill('white');
textAlign('center');
text('Prasanna',150,100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment