0% found this document useful (0 votes)
72 views1 page

ICT Code

Uploaded by

Ritisha Dwivedy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
72 views1 page

ICT Code

Uploaded by

Ritisha Dwivedy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

ICT Code

My favorite foods:

fill(255, 0, 0);
textSize(25);
text("My favorite foods:", 36, 36);
fill(0, 255, 238);
textSize(15);
text("1. Pasta", 63, 91);
fill(0, 255, 13);
text("2. Pizza", 63, 126);
fill(255, 145, 0);
text("3. Burger", 63, 161);

Mouse Tracker:

fill(255, 0, 255);

draw = function() {
background(255, 255, 255);
ellipse(mouseX, mouseY, 12, 12);
var label = mouseX + ", " + mouseY;
text(label, mouseX, mouseY);

};

You might also like