xxxxxxxxxx
17
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
}
function draw() {
background(220, 220, 255);
// fill(255,255,255);
// rect(0, 0, 10, 10);
push();
translate(100, 100);
rotate(340);
rect(0, 0, 30, 30);
pop();
}