//This is Excercises 3 from Shape 1 in Processing void setup(){ size(200,200); // background(153,225,255); background(255,198,222); } void draw(){ smooth(); stroke(76,1,36); strokeWeight(11); noFill(); //these curves make the top of my knot bezier(width/2, 50, 210, -10, 200, 100, width/2, 50); bezier(width/2, 50, -10, -10, 0, 110, width/2, 50); //these curves are the loose ends of the "ribbon" strokeWeight(13); strokeCap(SQUARE); bezier(width/2, 50, -10, 140,90,160,50,180); bezier(width/2, 50, 170, 120,120,170,150,190); }