xxxxxxxxxx
28
function setup() {
createCanvas(500, 500);
background(146,27,33);
fill(146,27,33)
strokeWeight(50)
rect (0,0, width, height)
for(x=0;x<=500;x+=10){
// for(y=0;y<=400;y+=4){
strokeWeight (2)
stroke (3,7,10)
fill (238, 212, 153)
bezier(x, height, 0, x/2, width/4, 0, width, 0, 0, 0, width/5, 0);
// line (x, height, 100/x, 0);
// }
}
stroke (3,7,10)
fill (59, 55, 99)
for (y=500; y>=0; y-=10){
bezier(height, y, 0, height/2, height/5, 0, height, 0, 0, 0, height/4, 0);
}
}
function draw() {
}