xxxxxxxxxx
31
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
background(255);
stroke(0);
strokeWeight(4);
translate(200, 300);
line(0, 0, 0, -100);
noStroke();
textFont("Courier");
textAlign(CENTER, CENTER);
textSize(24);
translate(0, -100);
push();
rotate(30);
stroke(0);
strokeWeight(4);
line(0, 0, 0, -100);
pop();
noStroke();
rotate(-30);
text("0,0", 32, 0);
stroke(0);
strokeWeight(0.5);
line(0, 0, 0, -100);
}