xxxxxxxxxx
39
function setup() {
createCanvas(400, 400);
strokeWeight(4);
stroke(255, 0, 0);
//line(x1, y1, x2, y2);
line(100, 100, 200, 200);
// ligne verticale
line(100, 100, 100, 200);
//ligne horizontale
line(100, 100, 200, 100);
// ligne aléatoire;
line(random(100, 301), random(height), random(width), 100);
// random entre 3 valeurs: 100, 200, 300
var chiffrealeatoire = int(random(1, 4));
// si chiffrealeatoire égale 1
if(chiffrealeatoire == 1){
// exécute ce code
stroke(0,0,255);
line(100, 100, 200, 200);
}
if(chiffrealeatoire == 2){
// exécute ce code
stroke(0,255,0);
line(200, 100, 200, 200);
}
// sinon
else{
// exécute ce code
line(300, 100, 200, 200);
}
}
function draw() {
// stroke(rouge, vert, bleu);
stroke(random(256), random(256), random(256), random(100, 200));
line(random(100, 301), random(height), random(width), 100);
}