xxxxxxxxxx
47
let nombre;
let tableau_x = [];
let tableau_y = [];
let tableau_w = [];
let tableau_h = [];
let tableau_c = [];
function dessinerCitrouille( a , b , c , d ){
stroke("darkgreen");
strokeWeight(5);
line(a - 20 , b - 46 , a , b );
stroke("black");
strokeWeight(1);
fill("darkorange");
ellipse(a , b , c + 60 , d );
fill("orange");
ellipse(a , b , c + 40 , d );
fill("darkorange");
ellipse(a , b , c + 20 , d );
fill("orange");
ellipse(a , b , c , d);
}
function setup() {
createCanvas(800, 800);
nombre = 10 ;
for ( let i = 0 ; i < nombre ; i = i + 1 ) {
tableau_x[i] = random( 0 , 800);
tableau_y[i] = random( 0 , 800);
tableau_w[i] = random( 60 , 80);
tableau_h[i] = random( 80 , 40);
}
}
function draw() {
background("black");
for ( let i = 0 ; i < nombre ; i = i + 1 ) {
dessinerCitrouille( tableau_x[i] , tableau_y[i] , tableau_w[i], tableau_h[i] );
}
}