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
19 lines
412 B
1 year ago
|
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');
|
||
|
}
|