xxxxxxxxxx
53
let lampcenterx, lampcentery, lampw, lamph;
let switchtop, switchmiddle, switchbottom, switchx, switchw,switchy
function setup() {
createCanvas(500, 700);
lamph = 200;
lampw = 200;
lampcenterx = width / 2;
lampcentery = lamph / 2 + 200;
switchtop=430
switchmiddle=490
switchbottom=550
switchx=lampcenterx - 20
switchw=40
switchy=40
}
function draw() {
background(50);
// Lamp wire
noStroke();
fill(20,240,160);
rect(lampcenterx - 3, 0, 6, 200);
// Lamp
strokeWeight(5);
stroke(20,240,160);
fill(160, 160, 160, 150);
arc(lampcenterx, lampcentery, lampw, lamph, PI, 0);
//Switch Base
stroke(0);
strokeWeight(2);
fill(100);
rect(lampcenterx - 20, 430, 40, 160, 10);
//Switch button
stroke(0);
strokeWeight(2);
fill(255,0,0,);
rect(switchx, switchtop, switchw, switchy, 10);
//lamp light
noStroke()
fill(254,256,231,100)
arc(lampcenterx, lampcentery, lampw, lamph, PI, 0);
quad(150,300,350,300,490,700,10,700)
}