"Script Nou" - Processing

ID Autor Duplicat din Ultima modificare
#4232 Arba Mihaela (mihaela_arba) - Duminica, 24 ian 2021, 14:11
AخA
 
1
function setup() {
2
    createCanvas(400, 400);
3
    strokeWeight(0);
4
    textSize(40);
5
    textStyle(BOLD);
6
    text("Apasa",50,50);
7
}
8
var grosime=8
9
function draw() {
10
    if(mouseIsPressed)
11
    {
12
      fill("RED");
13
      ellipse(mouseX,mouseY,grosime,grosime);
14
 
15
    }
16
}
Du-te sus!