//Shipra Gupta //Processing, Shape3 //Write your own function to draw a parameterized arch. int xPos = 100; //x position of first arch int yPos = 50; //y position of first arch int number = 10;//number of arches void setup(){ size(640, 408); noFill(); strokeWeight(1.5); stroke(#FFF0B7, 50); PImage door; door = loadImage("42-18836093.jpg"); image(door, 0, 0); } void draw(){ arch(xPos, yPos, number); } void arch (int x, int y, int num){ for(int i = 0; i