xxxxxxxxxx
77
var colors1 = ['red', 'blue', 'green', 'yellow', 'pink', 'white', 'orange', 'magenta', 'indigo', 'cyan', 'purple', 'maroon'];
var colors2 = [ 'olive' , 'teal', 'lightsalmon','aquamarine', 'bisque', 'coral', 'navy', 'turquoise', 'brown', 'black', 'lime', 'violet' ];
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
rectMode(CENTER);
fill(colors1[1]);
rect(200,100,100,100);
//rect(x, y, w, [h],
// x Number: x-coordinate of the rectangle.
//y Number: y-coordinate of the rectangle.
//w Number: width of the rectangle.
//h Number: height of the rectangle. (Optional)
fill(colors1[floor(random(0,4))]);
ellipse(200,100,50,50);
var num = random(1,4);
fill(colors1[floor(random(0,4))]);
ellipse(200,200,50,50);
fill(colors1[0]);
rect(200,300,300,300)
fill(colors1[floor(random(0,12))]);
triangle(30, 75, 58, 20, 86, 75)
fill(colors1[floor(random(0,4))]);
ellipse(200,250,50,50);
}