xxxxxxxxxx
39
function setup() {
createCanvas(400, 400);
blendMode(LIGHTEST);
}
function draw() {
background(120,200,200);
//blade object
arc(120, 180, 300, 20, 0, HALF_PI)
fill (100, 100, 120);
//bow object
noFill();
stroke (255,127,20);
strokeWeight(5);
arc(120, 184, 30, 50, 300, HALF_PI);
//lock object
ellipse(280, 180, 20, 40);
push(); // push
translate(20, 0);
strokeWeight(3);
fill(224, 199, 93);
ellipse(280, 180, 20, 40);
pop(); // pop
rotate(PI / 12.0);
rect(290, 30, 70, 140);
}