Resources for Web Development Studio by Joana Chicau at Creative Computing Institute, University of Arts of London.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
412 B

function setup() {
resizeCanvas(windowWidth,windowHeight)
}
function draw() {
noStroke()
fill (25, 25, 255, 100) // RGB + opacity
myCircle()
textSize(40)
text('hello ٩(˘◡˘)۶ world', 10, height/2) // x y
}
// RANDOM
function myCircle(){
circle(random(width), random(height), random(50))
fr = 6;
frameRate(fr);
describe('A blue circle moving randomly on a white canvas');
}