xxxxxxxxxx
31
function setup() {
createCanvas(400, 400);
rectMode(CENTER)
angleMode(DEGREES)
}
function draw() {
background(220);
push()
translate(200,200)
rotate(30)
rect(0,0,100,200)
pop()
push();
translate(100,200)
rotate(67)
ellipse(0,0,50,100)
pop();
beginShape();
curveVertex(165,117)
curveVertex(165,117)
curveVertex(296,)
endShape();
print(mouseX)
print(mouseY)
}