xxxxxxxxxx
40
function setup() {
createCanvas(950, 1150);
}
function draw() {
//fo background in rgb remember to close the expression ''
background('rgb(19,249,6)');
//antena linea
line(475,53,475,110);
//antena ancha
fill(249,93,6);
rect (445,110,60,90);
//punta centro
fill(249,202,6);
rect (400,200,150,200);
//punta iaq
fill(249,93,6);
rect (365,300,90,100);
//punta der
fill(249,93,6);
rect (495,300,90,100);
//small right
fill(138,39,242);
rect (250,900,50,50);
//tower
fill(41,39,242);
rect (300,400,350,550);
//small left
fill(138,39,242);
rect (650,900,50,50);
//base2
fill(249,93,6);
rect (175,950,600,200);
//base1
fill(249,202,6);
rect (150,1080,650,70);
}