xxxxxxxxxx
43
function setup() {
createCanvas(500, 500);
}
function draw() {
background(204,255,255);
stroke(0,51,102);
for(let i=0; i< 500; i++){
let x1 = i * 5;
let y1 = 0;
let x2 = i * 5;
let y2 = 500;
line(x1,x2,y1,y2);
}
for(let i=0; i< 500; i++){
let x1 = 500;
let y1 = 500 - i;
let x2 = 0;
let y2 = 500 - i;
stroke(0,204,204);
line(x1,x2,y1,y2);
}
for(let i=0; i< 250; i++){
let x1 = i * 10;
let y1 = 0;
let x2 = i * 10;
let y2 = 250;
stroke(255);
line(x1,y1,x2,y2);
rotate(5);
}
for(let i=0; i< 250; i++){
let x1 = i * 10;
let y1 = 250;
let x2 = i * 10;
let y2 = 250;
stroke(255,0,127);
line(x1,y1,x2,y2);
}
}