Created
February 27, 2020 05:47
-
-
Save rintukutum/943cbdde6f41bf4a22895661dddb74c6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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); | |
| // 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