Draw a wall with "irregular wavy color bands". Hint: you can use curveVertex and random functions in p5js library. Note: You should use loops to draw the lines, not manually write 50-100 line functions How would i answer this question using the code below: function setup() { createCanvas(350, 350); } function draw() { background(200); background('blue'); noFill(); //this will run a loop form -20 to fill the whole canvas for(let y=-20; y<300; y+=4){ beginShape(); Stroke("yelllow"); //now to link point to point in curve //y is height curveVertex(0, y+0); curveVertex(0, y+20); curveVertex(50, y+0); curveVertex(100, y+20); curveVertex(150, y+0); curveVertex(200, y+20); curveVertex(250, y+0); curveVertex(300, y+20); curveVertex(350, y+0); curveVertex(400, y+0); endShape(); } } Subject: Java Programming
Draw a wall with "irregular wavy color bands". Hint: you can use curveVertex and random functions in p5js library.
Note: You should use loops to draw the lines, not manually write 50-100 line functions
How would i answer this question using the code below:
function setup() {
createCanvas(350, 350);
}
function draw() {
background(200);
background('blue');
noFill();
//this will run a loop form -20 to fill the whole canvas
for(let y=-20; y<300; y+=4){
beginShape();
Stroke("yelllow");
//now to link point to point in curve
//y is height
curveVertex(0, y+0);
curveVertex(0, y+20);
curveVertex(50, y+0);
curveVertex(100, y+20);
curveVertex(150, y+0);
curveVertex(200, y+20);
curveVertex(250, y+0);
curveVertex(300, y+20);
curveVertex(350, y+0);
curveVertex(400, y+0);
endShape();
}
}
Subject: Java Programming
Trending now
This is a popular solution!
Step by step
Solved in 2 steps